mention default logging level

This commit is contained in:
bearnun 2019-08-30 13:34:56 -07:00 committed by David Lord
parent f4a1ea7563
commit fc326d3599

View file

@ -20,6 +20,9 @@ logger can also be used to log your own messages.
app.logger.info('%s failed to log in', user.username) app.logger.info('%s failed to log in', user.username)
abort(401) abort(401)
If you don't configure logging, Python's default log level is usually
'warning'. Nothing below the configured level will be visible.
Basic Configuration Basic Configuration
------------------- -------------------