From 63d960ca2516753a1032d837d008f63a4786643d Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Tue, 5 Oct 2010 01:44:12 +0000 Subject: [PATCH] Refs #14388 -- ... and corrected the naming of a formatter in the sample logging config. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13984 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/logging.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/logging.txt b/docs/topics/logging.txt index c6ee6fd96a0..cf5a6b0ed53 100644 --- a/docs/topics/logging.txt +++ b/docs/topics/logging.txt @@ -241,7 +241,7 @@ complex logging setup, configured using :meth:`logging.dictConfig`:: 'version': 1, 'disable_existing_loggers': True, 'formatters': { - 'explicit': { + 'verbose': { 'format': '%(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s' }, 'simple': {