summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2013-07-01 23:13:57 +0200
committerAymeric Augustin <aymeric.augustin@m4x.org>2013-07-01 23:16:25 +0200
commit6a0374d03705b04872ac72af2be92aedbf0c213f (patch)
tree1e93573e023216893c9441d211092ed1e820b36e /docs
parent72c65fea41a6a01f24e134e7627417d94746291a (diff)
Reflected the new default value of LOGGING_CONFIG in docs.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/settings.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
index 736edbb826..30e7e84fdb 100644
--- a/docs/ref/settings.txt
+++ b/docs/ref/settings.txt
@@ -1364,7 +1364,7 @@ __ https://github.com/django/django/blob/master/django/utils/log.py
LOGGING_CONFIG
--------------
-Default: ``'django.utils.log.dictConfig'``
+Default: ``'logging.config.dictConfig'``
A path to a callable that will be used to configure logging in the
Django project. Points at a instance of Python's `dictConfig`_
@@ -1373,6 +1373,10 @@ configuration method by default.
If you set :setting:`LOGGING_CONFIG` to ``None``, the logging
configuration process will be skipped.
+.. versionchanged:: 1.7
+
+ Previously, the default value was ``'django.utils.log.dictConfig'``.
+
.. _dictConfig: http://docs.python.org/library/logging.config.html#configuration-dictionary-schema
.. setting:: MANAGERS