From 19282cac600fb78f6902920d1c1df47f2c333339 Mon Sep 17 00:00:00 2001 From: Adarnof Date: Sat, 14 Apr 2018 13:53:41 -0400 Subject: [PATCH] Log messages from esi package. --- allianceauth/project_template/project_name/settings/base.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/allianceauth/project_template/project_name/settings/base.py b/allianceauth/project_template/project_name/settings/base.py index 45889964..49d00c35 100644 --- a/allianceauth/project_template/project_name/settings/base.py +++ b/allianceauth/project_template/project_name/settings/base.py @@ -166,7 +166,6 @@ CACHES = { } } -SECRET_KEY = 'this is a very bad secret key you should change' DEBUG = True ALLOWED_HOSTS = ['*'] DATABASES = { @@ -235,5 +234,9 @@ LOGGING = { 'handlers': ['log_file', 'console'], 'level': 'ERROR', }, + 'esi': { + 'handlers': ['log_file', 'console'], + 'level': 'DEBUG', + }, } }