summaryrefslogtreecommitdiff
path: root/docs/ref/settings.txt
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2010-10-05 00:11:41 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2010-10-05 00:11:41 +0000
commit240f68e4e5a617c9efe728e91db67823bafa8005 (patch)
tree6569bc5722d9ee7b8289f3dedac901b49c52c104 /docs/ref/settings.txt
parent24acca413977422681ca16b42fe9a6d763df2121 (diff)
Fixed #14388 -- Corrected some typos in the logging docs. Thanks to varikin, gremmie, Ramiro Morales and Gabriel Hurley for the reviews.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13982 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref/settings.txt')
-rw-r--r--docs/ref/settings.txt10
1 files changed, 7 insertions, 3 deletions
diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
index 595c2d0e34..c72b171ece 100644
--- a/docs/ref/settings.txt
+++ b/docs/ref/settings.txt
@@ -1006,11 +1006,13 @@ Default: ``()`` (Empty tuple)
A tuple of directories where Django looks for translation files.
See :ref:`using-translations-in-your-own-projects`.
-.. setting:: LOGIN_REDIRECT_URL
+.. setting:: LOGGING
LOGGING
-------
+.. versionadded:: 1.3
+
Default: A logging configuration dictionary.
A data structure containing configuration information. The contents of
@@ -1020,11 +1022,13 @@ configuration method described in :setting:`LOGGING_CONFIG`.
The default logging configuration passes HTTP 500 server errors to an
email log handler; all other log messages are given to a NullHandler.
-.. versionadded:: 1.3
+.. setting:: LOGGING_CONFIG
LOGGING_CONFIG
--------------
+.. versionadded:: 1.3
+
Default: ``'django.utils.log.dictConfig'``
A path to a callable that will be used to configure logging in the
@@ -1036,7 +1040,7 @@ configuration process will be skipped.
.. _dictConfig: http://docs.python.org/library/logging.html#logging.dictConfig
-.. versionadded:: 1.3
+.. setting:: LOGIN_REDIRECT_URL
LOGIN_REDIRECT_URL
------------------