Skip to content

Commit 9a7a2ec

Browse files
authored
Merge pull request #234 from CodeForPhilly/logger-to-INFO
Update app.py to set logging level to INFO
2 parents e493d8d + 36bbf71 commit 9a7a2ec

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
@@ -24,6 +24,9 @@
2424
app.register_blueprint(common_api)
2525
app.register_blueprint(user_api)
2626

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

2932

0 commit comments

Comments
 (0)