Commit 8f42934f authored by Tim Graham's avatar Tim Graham
Browse files

[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 4a06a904 from stable/1.8.x
parent fc949441
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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).