Ever since I deployed a site running Django 1.7 alpha (checked out from Git), I\'ve been occasionally receiving error messages with titles like:
\"Inv
The django docs address this specifically. They recommend putting this in your logging settings
LOGGING = { "handlers": { # ... "null": { "class": "logging.NullHandler", }, }, "loggers": { # ... "django.security.DisallowedHost": { "handlers": ["null"], "propagate": False, }, }, }