Skip to content

Commit

Permalink
chore: reduce log level, too spammy (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Aug 30, 2023
1 parent b98a72f commit e04383a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion a_sync/primitives/locks/prio_semaphore.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def _wake_up_next(self) -> None:
logger.debug('we found a lost waiter %s', waiter)
if not waiter.done():
waiter.set_result(None)
logger.warning("woke up lost waiter %s", waiter)
logger.debug("woke up lost waiter %s", waiter)
return
logger.debug("%s has no waiters to wake", self)

Expand Down

0 comments on commit e04383a

Please sign in to comment.