fixed loglevel configuration

This commit is contained in:
Jenny Danzmayr 2023-11-29 19:48:09 +01:00
parent 0aaf31a028
commit 3af79daa0a
3 changed files with 3 additions and 3 deletions

View file

@ -476,7 +476,7 @@ MESSAGE_STORAGE = 'django.contrib.messages.storage.session.SessionStorage'
SILENCED_SYSTEM_CHECKS = ['debug_toolbar.W006']
loglevel = env.str('C3NAV_LOGLEVEL', default='DEBUG' if DEBUG else 'INFO')
loglevel = env.str('C3NAV_LOGLEVEL', default='DEBUG' if DEBUG else 'INFO').upper()
LOGGING = {
'version': 1,