forked from CGM_Public/pretix_original
9 lines
185 B
Python
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
|