[fix] show debug output when enabled

This commit is contained in:
Thomas Pointhuber 2015-08-24 11:03:06 +02:00
parent 3a8eafcc6b
commit 9cec9770be

View file

@ -40,7 +40,7 @@ else:
with open(settings_path) as settings_yaml:
settings = load(settings_yaml)
if settings.get('server', {}).get('debug'):
if settings.get('general', {}).get('debug'):
logging.basicConfig(level=logging.DEBUG)
else:
logging.basicConfig(level=logging.WARNING)