From d3b7b6a7a452314ae12f633dec6d87b4f3465bea Mon Sep 17 00:00:00 2001 From: Krzysztof Jurewicz Date: Tue, 27 Aug 2013 02:00:11 +0200 Subject: [PATCH] [1.5.x] Fixed #20981 -- Noted the default value of disable_existing_loggers. Backport of 095643e691 from master --- docs/topics/logging.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/topics/logging.txt b/docs/topics/logging.txt index 76c40d47c0..90280ddbae 100644 --- a/docs/topics/logging.txt +++ b/docs/topics/logging.txt @@ -223,8 +223,9 @@ Django 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