[Answer]-Django class logger not working

1👍

Try adding a root logger with a console handler, and see what %(name)s gets logged there. All messages should reach that, unless they first get handled by a logger with propagate=False.

...
'loggers': {
    ...,
    '': {
          'handlers': ['console'],
           'level': 'DEBUG',
    },
 }
 ...
👤brki

Leave a comment