The PRINT_TIMINGS setting in TEMPLATE_TIMINGS_SETTINGS defaults to True, which means that every request has lots of stuff printed to stdout, when mostly it shouldn't be, because it's stored into the panel.
I'd expect to have to opt-in to that functionality, and really, it'd be nicer if it used logger.debug/info() so that I can opt-in at the LOGGING configuration dictionary level, if I so choose - it'd also allow one to show the output in a way which it fits with whatever other logging formats are in use.
The
PRINT_TIMINGS
setting inTEMPLATE_TIMINGS_SETTINGS
defaults toTrue
, which means that every request has lots of stuff printed to stdout, when mostly it shouldn't be, because it's stored into the panel.I'd expect to have to opt-in to that functionality, and really, it'd be nicer if it used
logger.debug/info()
so that I can opt-in at theLOGGING
configuration dictionary level, if I so choose - it'd also allow one to show the output in a way which it fits with whatever other logging formats are in use.