summaryrefslogtreecommitdiff
path: root/docs
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:25:26 -0400
commit095643e69145d6899313c518fdd39919c9a89908 (patch)
treea87676d8715a1c781b6700e6789d8dc005764893 /docs
parent4f7ed3f2d14d1c9ec2b9f8b3fae5cced008606ea (diff)
Fixed #20981 -- Noted the default value of disable_existing_loggers.
Diffstat (limited to 'docs')
-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 21eac6e120..4ceaedae39 100644
--- a/docs/topics/logging.txt
+++ b/docs/topics/logging.txt
@@ -216,8 +216,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