stupid Python logging woes
Wednesday, Oct 17, 2012
Recently moved a project to Django 1.3 and I kept seeing duplicate messages for all of my logger.x messages, even though my LOGGING dictionary looked like:
LOGGING = { 'version': 1, 'disable_existing_loggers': True, 'loggers': { 'base': { 'level': 'DEBUG', }, } } I simplified it to this to see if there were any issues, and although I define no handlers for the ‘base’ logger, it still was printing out logging messages.