Skip to content

Commit

Permalink
Fixed #14397 -- Corrected some typos in the logging configuration exa…
Browse files Browse the repository at this point in the history
…mple. Thanks to hunterford for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@13988 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
freakboy3742 committed Oct 6, 2010
1 parent 63d960c commit 57aeb54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/topics/logging.txt
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ complex logging setup, configured using :meth:`logging.dictConfig`::
},
'mail_admins': {
'level': 'ERROR',
'class': 'django.utils.log.AdminEmailHandler'
'class': 'django.utils.log.AdminEmailHandler',
'filters': ['special']
}
},
Expand All @@ -282,7 +282,7 @@ complex logging setup, configured using :meth:`logging.dictConfig`::
'propagate': False,
},
'myproject.custom': {
'handlers: ['console', 'mail_admins'],
'handlers': ['console', 'mail_admins'],
'level': 'INFO',
'filters': ['special']
}
Expand Down

0 comments on commit 57aeb54

Please sign in to comment.