Use absolute_path instead of Path object in log statement.

This commit is contained in:
voussoir 2022-01-14 23:42:15 -08:00
parent 7f18a2b9f7
commit 0239ae6b76
No known key found for this signature in database
GPG key ID: 5F7554F8C26DACCB

View file

@ -508,7 +508,7 @@ class YCDLDB(
*args,
**kwargs,
)
log.debug('Found closest YCDLDB at %s.', path)
log.debug('Found closest YCDLDB at %s.', path.absolute_path)
return ycdldb
@staticmethod