Skip to content

Commit

Permalink
chore: reduce loggers
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler committed Apr 22, 2024
1 parent 160e564 commit 5e796ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion a_sync/primitives/queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ class SmartFuture(asyncio.Future, Generic[T]):
def __repr__(self):
return f"<{type(self).__name__} waiters={self.num_waiters} {self._state}>"
def __await__(self):
logger.info("entering %s", self)
logger.debug("entering %s", self)
if self.done():
return self.result() # May raise too.
logger.info("awaiting %s", self)
Expand Down

0 comments on commit 5e796ec

Please sign in to comment.