Skip to content

Commit 36bbf71

Browse files
authored
Update app.py
Explicitly set logging level to INFO (most verbose). In Docker, this seems to get set to INFO, but when running it VSCode it seems to be set to WARNING.
1 parent ceee4e5 commit 36bbf71

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/server/app.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@
2525
app.register_blueprint(common_api)
2626
app.register_blueprint(user_api)
2727

28+
app.logger.setLevel('INFO') # By default, Docker appears to set at INFO but VSCode at WARNING
29+
30+
2831
# init_db_schema.start(connection)
2932

3033

0 commit comments

Comments
 (0)