Kaydet (Commit) 17149496 authored tarafından Camilo Nova's avatar Camilo Nova

Fixes docs typo

üst c7f44ae0
......@@ -255,12 +255,12 @@ complex logging setup, configured using :meth:`logging.dictConfig`::
},
'handlers': {
'null': {
'level':'DEBUG',
'class':'django.utils.log.NullHandler',
'level': 'DEBUG',
'class': 'django.utils.log.NullHandler',
},
'console':{
'level':'DEBUG',
'class':'logging.StreamHandler',
'level': 'DEBUG',
'class': 'logging.StreamHandler',
'formatter': 'simple'
},
'mail_admins': {
......@@ -271,9 +271,9 @@ complex logging setup, configured using :meth:`logging.dictConfig`::
},
'loggers': {
'django': {
'handlers':['null'],
'handlers': ['null'],
'propagate': True,
'level':'INFO',
'level': 'INFO',
},
'django.request': {
'handlers': ['mail_admins'],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment