소스 검색

Merge pull request #7388 from diivi/feat/log-cache-dir

feat: add cache dir to --debug
TW 2 년 전
부모
커밋
437ee97e66
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      src/borg/cache.py

+ 1 - 0
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