Skip to content
Snippets Groups Projects
Commit f708ebe6 authored by Oriol Tintó's avatar Oriol Tintó
Browse files

Improve logging for compress.py

parent ab1138c7
No related branches found
No related tags found
1 merge request!4Switching to the advanced configuration method and fixing spack build.
......@@ -2,6 +2,7 @@ import glob
import logging
# Set logging level to info.
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger("compress")
logger.setLevel(logging.INFO)
......@@ -25,11 +26,14 @@ def compress_outputs():
# Get a list of file names:
output_file_names = [RUNDIR / f for f in output_file_names.split(" ") if f.strip()]
logger.info(f"File patterns: {output_file_names}")
output_files = []
for file_pattern in output_file_names:
output_files.extend(glob.glob(file_pattern.as_posix()))
output_files = [Path(f) for f in output_files]
logger.info(f"Output files: {output_files}")
if not output_files:
logger.warning("The list of files is empty!")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment