Skip to content

Commit

Permalink
delete duplicated logger
Browse files Browse the repository at this point in the history
  • Loading branch information
kh01734 committed Nov 7, 2024
1 parent fca86f7 commit 5f2b34f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pacs/utils/rmfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def rmfile(settings: MDsettings, cycle: int) -> None:

continue

LOGGER.info(f"rmfile completed successfully in cycle{cycle:03}")
# LOGGER.info(f"rmfile completed successfully in cycle{cycle:03}")
record_finished(settings, cycle)


Expand Down
2 changes: 1 addition & 1 deletion pacs/utils/rmmol.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def rmmol(settings: MDsettings, cycle: int, last_cycle: bool) -> None:
for p in processes:
p.close()

LOGGER.info(f"trajectory files in cycle{cycle:03} have been reduced")
# LOGGER.info(f"trajectory files in cycle{cycle:03} have been reduced")
record_finished(settings, cycle)


Expand Down

0 comments on commit 5f2b34f

Please sign in to comment.