forked from Ponysearch/Ponysearch
[fix] show debug output when enabled
This commit is contained in:
parent
3a8eafcc6b
commit
9cec9770be
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ else:
|
||||||
with open(settings_path) as settings_yaml:
|
with open(settings_path) as settings_yaml:
|
||||||
settings = load(settings_yaml)
|
settings = load(settings_yaml)
|
||||||
|
|
||||||
if settings.get('server', {}).get('debug'):
|
if settings.get('general', {}).get('debug'):
|
||||||
logging.basicConfig(level=logging.DEBUG)
|
logging.basicConfig(level=logging.DEBUG)
|
||||||
else:
|
else:
|
||||||
logging.basicConfig(level=logging.WARNING)
|
logging.basicConfig(level=logging.WARNING)
|
||||||
|
|
Loading…
Reference in a new issue