Skip to content
This repository has been archived by the owner on Jan 25, 2022. It is now read-only.

Commit

Permalink
set log level to Error only
Browse files Browse the repository at this point in the history
  • Loading branch information
bennettscience committed Aug 8, 2019
1 parent 72a2650 commit 58f5889
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
file_handler.setFormatter(logging.Formatter(
'%(asctime)s %(levelname)s: %(message)s [in %(pathname)s:%(lineno)d]'
))
file_handler.setLevel(logging.DEBUG)
file_handler.setLevel(logging.ERROR)

app = Flask(__name__)
app.config.from_object(Config)
Expand Down

0 comments on commit 58f5889

Please sign in to comment.