allow setting configs for the frontend through env vars w/ burnettk

This commit is contained in:
jasquat 2023-02-07 17:17:45 -05:00
parent fbe2bbfb34
commit 1428c1c39f
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ def setup_logger(app: Flask) -> None:
# the json formatter is nice for real environments but makes
# debugging locally a little more difficult
if app.config["ENV_IDENTIFIER"] != "development":
if app.config["ENV_IDENTIFIER"] != "local_development":
json_formatter = JsonFormatter(
{
"level": "levelname",