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

feat: add cache dir to --debug
This commit is contained in:
TW 2023-02-26 21:02:12 +01:00 committed by GitHub
commit 437ee97e66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -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