summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzysztof Jurewicz <krzysztof.jurewicz@gmail.com>2013-08-27 02:00:11 +0200
committerTim Graham <timograham@gmail.com>2013-08-27 10:27:44 -0400
commit544a190ebf53d4a6661474d3020eab2334c7f181 (patch)
tree3bcc30f1e74186e55371b9243df904e908f3333f
parentc4e2e4f630fd86cb9993daf874c1a8964e4b92f8 (diff)
[1.6.x] Fixed #20981 -- Noted the default value of disable_existing_loggers.
Backport of 095643e691 from master
-rw-r--r--docs/topics/logging.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/topics/logging.txt b/docs/topics/logging.txt
index a88201ad47..05a1a73f3c 100644
--- a/docs/topics/logging.txt
+++ b/docs/topics/logging.txt
@@ -223,8 +223,9 @@ Django logging configuration <default-logging-configuration>`. From Django
1.5 forward, the project's logging configuration is merged with Django's
defaults, hence you can decide if you want to add to, or replace the existing
configuration. To completely override the default configuration, set the
-``disable_existing_loggers`` key to True in the :setting:`LOGGING`
-dictConfig. Alternatively you can redefine some or all of the loggers.
+``disable_existing_loggers`` key to ``True`` (which is the default) in the
+:setting:`LOGGING` dictConfig. Alternatively you can redefine some or all of
+the loggers by setting ``disable_existing_loggers`` to ``False``.
Logging is configured as soon as settings have been loaded
(either manually using :func:`~django.conf.settings.configure` or when at least