From 2ceae5f8a5783d292d89cb9cb8dbec429fc3e502 Mon Sep 17 00:00:00 2001 From: bearnun Date: Fri, 30 Aug 2019 13:34:56 -0700 Subject: [PATCH] mention default logging level --- docs/logging.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/logging.rst b/docs/logging.rst index 54a6b13d..0912b7a1 100644 --- a/docs/logging.rst +++ b/docs/logging.rst @@ -20,6 +20,9 @@ logger can also be used to log your own messages. app.logger.info('%s failed to log in', user.username) 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 -------------------