This is my settings module:
LOGGING = { \'version\': 1, \'disable_existing_loggers\': False, \'handlers\': { \'file\': { \'level\': \'DEBU
You could add the "catch all" logger to the loggers section:
'loggers': { '': { 'handlers': ['file'], 'level': 'DEBUG', } }
It will catch all the log messages which are not caught by Django's default loggers.