Reflected the new default value of LOGGING_CONFIG in docs.

This commit is contained in:
Aymeric Augustin 2013-07-01 23:13:57 +02:00
parent 72c65fea41
commit 6a0374d037
1 changed files with 5 additions and 1 deletions

View File

@ -1364,7 +1364,7 @@ __ https://github.com/django/django/blob/master/django/utils/log.py
LOGGING_CONFIG 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 A path to a callable that will be used to configure logging in the
Django project. Points at a instance of Python's `dictConfig`_ 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 If you set :setting:`LOGGING_CONFIG` to ``None``, the logging
configuration process will be skipped. 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 .. _dictConfig: http://docs.python.org/library/logging.config.html#configuration-dictionary-schema
.. setting:: MANAGERS .. setting:: MANAGERS