﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
25959	Update logging example to use the django logger	SimonSteinberger	Pramod Bisht	"The first example config for Django's new logger still includes the old logger:

https://docs.djangoproject.com/en/1.9/topics/logging/#configuring-logging


{{{
'loggers': {
    'django.request': {
        'handlers': ['file'],
        'level': 'DEBUG',
        'propagate': True,
    },
},

}}}

Should be:

{{{

    'loggers': {
        'django': {
            'handlers': ['file'],
            'level': 'DEBUG',
            'propagate': True,
        },
    },
}}}
"	Cleanup/optimization	closed	Documentation	1.9	Normal	fixed	logging, example	pramodpsb@…	Accepted	1	0	0	1	1	0
