[Django]-Cannot resolve 'django.utils.log.NullHandler' in Django 1.9+

71👍

django.utils.log.NullHandler is actually alias to logging.NullHandler.

Looks like it was removed in 1.9.

Just check your settings (and any other code) and replace django.utils.log.NullHandler with logging.NullHandler.

Leave a comment