Skip to content

Commit

Permalink
Reduce pop timer log level to info
Browse files Browse the repository at this point in the history
  • Loading branch information
Askaholic committed Sep 18, 2021
1 parent ab77462 commit 587061d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/matchmaker/pop_timer.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def time_until_next_pop(self, num_queued: int, time_queued: float) -> float:
# Obtained by solving $ NUM_PLAYERS = rate * time $ for time.
next_pop_time = desired_players * total_times / total_players
if next_pop_time > config.QUEUE_POP_TIME_MAX:
self._logger.warning(
self._logger.info(
"Required time (%.2fs) for %s is larger than max pop time (%ds). "
"Consider increasing the max pop time",
next_pop_time, self.queue.name, config.QUEUE_POP_TIME_MAX
Expand Down

0 comments on commit 587061d

Please sign in to comment.