Skip to content

Commit

Permalink
Change "running loop" message to a debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
4Kaylum committed Oct 30, 2024
1 parent 4ce4d73 commit 9b93cd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion novus/ext/client/loop.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ async def _run(self) -> None:
except asyncio.CancelledError:
return
first = False
log.info("Running Loop[%s.%s()]", self.owner.__name__, self.func.__name__)
log.debug("Running Loop[%s.%s()]", self.owner.__name__, self.func.__name__)
task = asyncio.create_task(self.func(self.owner, *self._args, **self._kwargs)) # type: ignore
if self.end_behavior == LoopBehavior.end:
await asyncio.wait([task])
Expand Down

0 comments on commit 9b93cd9

Please sign in to comment.