Skip to content

Commit

Permalink
set LOG_LEVEL as the same between for sqlite that for the general app
Browse files Browse the repository at this point in the history
Co-authored-by: nesitor <[email protected]>
  • Loading branch information
olethanh and nesitor authored Nov 18, 2024
1 parent a9d54b9 commit e4a4e98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/aleph/vm/orchestrator/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,8 +305,8 @@ def main():
handlers=handlers,
)

logging.getLogger("aiosqlite").setLevel(logging.WARNING)
logging.getLogger("sqlalchemy.engine").setLevel(logging.WARNING)
logging.getLogger("aiosqlite").setLevel(settings.LOG_LEVEL)
logging.getLogger("sqlalchemy.engine").setLevel(settings.LOG_LEVEL)

settings.update(
USE_JAILER=args.use_jailer,
Expand Down

0 comments on commit e4a4e98

Please sign in to comment.