From 4d052909cb73f044758a8f459637395877af796f Mon Sep 17 00:00:00 2001 From: leufen1 <l.leufen@fz-juelich.de> Date: Thu, 2 Jun 2022 15:45:07 +0200 Subject: [PATCH] adjust log message --- mlair/run_modules/pre_processing.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mlair/run_modules/pre_processing.py b/mlair/run_modules/pre_processing.py index 75c63202..5cf676dd 100644 --- a/mlair/run_modules/pre_processing.py +++ b/mlair/run_modules/pre_processing.py @@ -313,7 +313,8 @@ class PreProcessing(RunEnvironment): def store_data_handler_attributes(self, data_handler, collection): store_attributes = data_handler.store_attributes() if len(store_attributes) > 0: - logging.info(f"store following parameters requested by the data handler: {','.join(store_attributes)}") + logging.info(f"store following parameters ({len(store_attributes)}) requested by the data handler: " + f"{','.join(store_attributes)}") attrs = {} for dh in collection: station = str(dh) -- GitLab