From 7dd186ccf35a73692afcee6e6846bd2f6cca88c6 Mon Sep 17 00:00:00 2001 From: Divyansh Singh Date: Sun, 26 Feb 2023 23:48:35 +0530 Subject: [PATCH] feat: add cache dir to --debug --- src/borg/cache.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/borg/cache.py b/src/borg/cache.py index afc6a9b230..7dbde9ce9d 100644 --- a/src/borg/cache.py +++ b/src/borg/cache.py @@ -262,6 +262,7 @@ class CacheConfig: def __init__(self, repository, path=None, lock_wait=None): self.repository = repository self.path = cache_dir(repository, path) + logger.debug("Using %s as cache", self.path) self.config_path = os.path.join(self.path, "config") self.lock = None self.lock_wait = lock_wait