From ab15293f58fb561ed330fd4a4e3888bc8b40b7bf Mon Sep 17 00:00:00 2001 From: Maaike Date: Tue, 14 May 2024 15:11:50 +0200 Subject: [PATCH] default log-level should be WARNING not ERROR --- wis2box-create-config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wis2box-create-config.py b/wis2box-create-config.py index 39d8f66e6..32be22df1 100644 --- a/wis2box-create-config.py +++ b/wis2box-create-config.py @@ -307,7 +307,7 @@ def create_wis2box_env(config_dir: str) -> None: fh.write('WIS2BOX_API_BACKEND_URL=http://elasticsearch:9200\n') fh.write('\n') fh.write('# logging\n') - fh.write('WIS2BOX_LOGGING_LOGLEVEL=ERROR\n') + fh.write('WIS2BOX_LOGGING_LOGLEVEL=WARNING\n') fh.write('WIS2BOX_LOGGING_LOGFILE=stdout\n') fh.write('\n') fh.write('# WIS2BOX WEBAPP credentials\n')