Skip to content

Commit

Permalink
revert test logging
Browse files Browse the repository at this point in the history
  • Loading branch information
ankona committed Jan 8, 2024
1 parent 1de57b8 commit 64722c4
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions smartsim/experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,10 +353,7 @@ def finished(self, entity: SmartSimEntity) -> bool:
by this ``Experiment``
"""
try:
is_finished = self._control.finished(entity)
if is_finished:
logger.info(f"queried entity has finished: {entity.name}")
return is_finished
return self._control.finished(entity)
except SmartSimError as e:
logger.error(e)
raise
Expand Down

0 comments on commit 64722c4

Please sign in to comment.