Skip to content

Instantly share code, notes, and snippets.

@groovecoder
Created April 10, 2013 20:35
Show Gist options
  • Save groovecoder/5358212 to your computer and use it in GitHub Desktop.
Save groovecoder/5358212 to your computer and use it in GitHub Desktop.
import logging
from django.conf import settings
class RequiredDebugTrue(logging.Filter):
def filter(self, record):
return settings.DEBUG
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment