scaffold from license_manager

This commit is contained in:
lpm0073 2022-09-14 18:11:36 -05:00
parent 54b0a5c125
commit 02557e46e2

View File

@ -0,0 +1,13 @@
from .base import *
COMPRESS_ENABLED = True
COMPRESS_OFFLINE = True
# Get rid of the "local" handler
try:
LOGGING["handlers"].pop("local")
for logger in LOGGING["loggers"].values():
if "local" in logger["handlers"]:
logger["handlers"].remove("local")
except Exception:
pass