Skip to content

Commit

Permalink
adjust logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeitsperre committed Sep 13, 2024
1 parent 4df1592 commit d01e79b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/xscen/catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,8 @@ def copy_files(
logger.info(msg)
unzip_directory(old, new)
elif zipzarr and old.suffix == ".zarr":
logger.info(f"Zipping {old} to {new}.")
msg = f"Zipping {old} to {new}."
logger.info(msg)
zip_directory(old, new)
elif old.is_dir():
msg = f"Copying directory tree {old} to {new}."
Expand Down

0 comments on commit d01e79b

Please sign in to comment.