diff options
author | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-02-22 11:14:07 +0100 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-02-22 11:41:27 +0100 |
commit | 14752ce14c376acc38d292d9b43937b6ca04fbd8 (patch) | |
tree | 92f8118ba2d1c505059138b0e7606d9005fd52ec | |
parent | e3bb01f5f1727d3384c2826336ed06c5c82246d4 (diff) |
cache: improve logging
use info instead of debug to make it easier to debug problems when creating the
cache.
-rw-r--r-- | src/utils/cache.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/cache.py b/src/utils/cache.py index 9952c50..a97cc41 100644 --- a/src/utils/cache.py +++ b/src/utils/cache.py @@ -78,5 +78,5 @@ def init_cache(): """ mountpoint = mount_cache() if mountpoint: - logging.debug(f'Creating cache directory at {mountpoint}') + logging.info(f'Creating cache directory at {mountpoint}') os.makedirs('/opt/opengnsys/cache/opt/opengnsys/images') |