summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-09-23 11:20:28 -0400
committerTim Graham <timograham@gmail.com>2015-09-23 11:22:28 -0400
commit8f42934f86c1c6dff9fb24fd6fadb9d72b89d7b6 (patch)
tree670c03b01413548c044cda683c7563bb3074d289
parentfc94944183f1f1325824ee0ef1f49d737ec86d4a (diff)
downloaddjango-8f42934f86c1c6dff9fb24fd6fadb9d72b89d7b6.tar.gz
[1.7.x] Refs #24361 -- Corrected documented level of the 'django' logger.
The logger doesn't define an explicit level, therefore it defaults to WARNING. Backport of 4a06a904dcd27388ec9a3cfb2bc8a8421bb44816 from stable/1.8.x
-rw-r--r--docs/topics/logging.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/logging.txt b/docs/topics/logging.txt
index e7ed13b033..44f7efa251 100644
--- a/docs/topics/logging.txt
+++ b/docs/topics/logging.txt
@@ -688,8 +688,8 @@ By default, Django configures the following logging:
When :setting:`DEBUG` is ``True``:
-* The ``django`` catch-all logger sends all messages at the ``INFO`` level or
- higher to the console. Django doesn't make any such logging calls at this
+* The ``django`` catch-all logger sends all messages at the ``WARNING`` level
+ or higher to the console. Django doesn't make any such logging calls at this
time (all logging is at the ``DEBUG`` level or handled by the
``django.request`` and ``django.security`` loggers).