Add a log.debug when connecting to sqlite file.
This commit is contained in:
parent
16688f95e7
commit
e982858c28
1 changed files with 2 additions and 1 deletions
|
@ -1612,6 +1612,7 @@ class PhotoDB(
|
|||
raise FileNotFoundError(msg)
|
||||
|
||||
self.data_directory.makedirs(exist_ok=True)
|
||||
log.debug('Connecting to sqlite file "%s".', self.database_filepath.absolute_path)
|
||||
self.sql = sqlite3.connect(self.database_filepath.absolute_path)
|
||||
|
||||
if existing_database:
|
||||
|
@ -1647,13 +1648,13 @@ class PhotoDB(
|
|||
path = parent
|
||||
|
||||
path = possible
|
||||
log.debug('Found closest PhotoDB at "%s".', path.absolute_path)
|
||||
photodb = cls(
|
||||
data_directory=path,
|
||||
create=False,
|
||||
*args,
|
||||
**kwargs,
|
||||
)
|
||||
log.debug('Found closest PhotoDB at %s.', path)
|
||||
return photodb
|
||||
|
||||
def __del__(self):
|
||||
|
|
Loading…
Reference in a new issue