From b66bc397b6a7e10b0c95951ea700549a1609f519 Mon Sep 17 00:00:00 2001 From: lukas leufen <l.leufen@fz-juelich.de> Date: Wed, 18 Mar 2020 16:23:06 +0100 Subject: [PATCH] add number of stations to info logging --- run_zam347.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_zam347.py b/run_zam347.py index 9fbb728d..1e140f48 100644 --- a/run_zam347.py +++ b/run_zam347.py @@ -20,7 +20,7 @@ def load_stations(): filename = 'German_background_stations.json' with open(filename, 'r') as jfile: stations = json.load(jfile) - logging.info(f"load station IDs from file: {filename}") + logging.info(f"load station IDs from file: {filename} ({len(stations)} stations)") # stations.remove('DEUB042') except FileNotFoundError: stations = ['DEBW107', 'DEBY081', 'DEBW013', 'DEBW076', 'DEBW087', 'DEBW001'] -- GitLab