diff options
| author | Tim Graham <timograham@gmail.com> | 2015-09-23 11:20:28 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-09-23 11:21:16 -0400 |
| commit | 4a06a904dcd27388ec9a3cfb2bc8a8421bb44816 (patch) | |
| tree | 20a1b5de70572d5a538720c80faa91101cb6ffff | |
| parent | 5add28dad0b31bd2e1d550de4d56a3c3ffbf1ec0 (diff) | |
Refs #24361 -- Corrected documented level of the 'django' logger.
The logger doesn't define an explicit level, therefore it defaults
to WARNING.
| -rw-r--r-- | docs/topics/logging.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/logging.txt b/docs/topics/logging.txt index 43afd51395..d88b1de064 100644 --- a/docs/topics/logging.txt +++ b/docs/topics/logging.txt @@ -695,8 +695,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). |
