From 793a71b7be9970bee8cbac68985684628e99ad23 Mon Sep 17 00:00:00 2001 From: raratiru Date: Wed, 28 Nov 2018 04:13:21 +0200 Subject: [PATCH] Fixed #29991 -- Doc'd logger propogation for the default logging config. --- docs/topics/logging.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/topics/logging.txt b/docs/topics/logging.txt index 6badc175689..c6aa0c5a5a6 100644 --- a/docs/topics/logging.txt +++ b/docs/topics/logging.txt @@ -746,5 +746,10 @@ Independent of the value of :setting:`DEBUG`: * The :ref:`django-server-logger` logger sends messages at the ``INFO`` level or higher to the console. +All loggers except :ref:`django-server-logger` propagate logging to their +parents, up to the root ``django`` logger. The ``console`` and ``mail_admins`` +handlers are attached to the root logger to provide the behavior described +above. + See also :ref:`Configuring logging ` to learn how you can complement or replace this default logging configuration.