mirror of
https://github.com/pretix/pretix.git
synced 2026-05-04 15:04:03 +00:00
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
|