Files
pretix_original/src/pretix/helpers/logs.py
2015-07-19 20:46:34 +02:00

9 lines
185 B
Python

import logging
from django.conf import settings
class AdminExistsFilter(logging.Filter):
def filter(self, record):
return not settings.DEBUG and len(settings.ADMINS) > 0