From bf1a87fa0ea5489ee54a8a46cdaed98ae4493442 Mon Sep 17 00:00:00 2001 From: George McCabe Date: Thu, 3 Sep 2020 11:56:04 -0600 Subject: [PATCH] output log file path to the screen even if there were no errors so users can easily find the log file --- metplus/util/met_util.py | 1 + 1 file changed, 1 insertion(+) diff --git a/metplus/util/met_util.py b/metplus/util/met_util.py index 18113fa9b..9e1177aec 100644 --- a/metplus/util/met_util.py +++ b/metplus/util/met_util.py @@ -236,6 +236,7 @@ def post_run_cleanup(config, app_name, total_errors): logger.debug(f"{app_name} took {total_run_time} to run.") if total_errors == 0: + logger.info(f"Check the log file for more information: {config.getstr('config', 'LOG_METPLUS')}") logger.info(f'{app_name} has successfully finished running.') else: error_msg = f"{app_name} has finished running but had {total_errors} error"