Compare commits

..

1 Commits

Author SHA1 Message Date
Tim Van Baak 5007a77675 Add more logging 2021-02-18 20:26:16 -08:00
1 changed files with 1 additions and 1 deletions

View File

@ -240,5 +240,5 @@ def wsgi():
config_path = os.environ.get(CONFIG_ENVVAR) or '/etc/redstring.conf' config_path = os.environ.get(CONFIG_ENVVAR) or '/etc/redstring.conf'
config = read_config(app, config_path) config = read_config(app, config_path)
logger.setLevel(logging.DEBUG) logger.setLevel(logging.DEBUG)
logger.debug(f'Loaded config from {config_path}: {config}') logger.debug(f'Lloaded config from {config_path}: {config}')
return app return app