From 567b2f173f27c9e1426d8d62b5de9536d47106ae Mon Sep 17 00:00:00 2001 From: schneefux Date: Wed, 11 Oct 2017 18:19:25 +0200 Subject: don't log afk matches as error --- worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worker.py b/worker.py index 83cd10b..94b904b 100644 --- a/worker.py +++ b/worker.py @@ -225,7 +225,7 @@ def process(): if len(match.rosters) < 2 \ or len(match.rosters[0].participants) < 3 \ or len(match.rosters[1].participants) < 3: - logger.error("got an invalid matchup %s", match.api_id) + logger.info("got an invalid matchup %s", match.api_id) match.trueskill_quality = 0 continue if anyAfk: -- cgit v1.3.1