Merge branch 'main' into lstein/fix-logger-reconfiguration

This commit is contained in:
Lincoln Stein
2023-06-08 13:41:24 -07:00
committed by GitHub
3 changed files with 3 additions and 7 deletions

View File

@ -218,6 +218,7 @@ def invoke_cli():
db_location = ":memory:"
else:
db_location = config.db_path
db_location.parent.mkdir(parents=True,exist_ok=True)
logger.info(f'InvokeAI database location is "{db_location}"')