Skip to content

Commit

Permalink
reduce log level for async run status
Browse files Browse the repository at this point in the history
  • Loading branch information
maurerle committed Nov 22, 2024
1 parent f5f0431 commit 79dd828
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assume/world.py
Original file line number Diff line number Diff line change
Expand Up @@ -621,11 +621,11 @@ async def async_run(self, start_ts: datetime, end_ts: datetime):
start_ts (datetime.datetime): The start timestamp for the simulation run.
end_ts (datetime.datetime): The end timestamp for the simulation run.
"""
logger.info("activating container")
logger.debug("activating container")
# agent is implicit added to self.container._agents
async with activate(self.container) as c:
await tasks_complete_or_sleeping(c)
logger.info("all agents up - starting simulation")
logger.debug("all agents up - starting simulation")
pbar = tqdm(total=end_ts - start_ts)

# allow registration before first opening
Expand Down

0 comments on commit 79dd828

Please sign in to comment.