﻿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
27931	"Clarify the meaning of ""django catch-all logger"""	Jesse	Tim Graham <timograham@…>	"[https://docs.djangoproject.com/en/1.10/topics/logging/#django-s-default-logging-configuration Django docs] state that, when `DEBUG = True`, all log messages INFO or higher should go to the console. However, it appears that the level is actually WARN or higher:

{{{
#!python
import logging
logger = logging.getLogger(__name__)

logger.info(""info"")
logger.warning(""warning"")
logger.error(""error"")
logger.critical(""critical"")
}}}

And the output in the console:
{{{
warning
error
critical
}}}"	Cleanup/optimization	closed	Documentation	1.10	Normal	fixed			Accepted	1	0	0	0	1	0
