From 332705dbbe31fd6e8391be2e5541c4aec73aff8e Mon Sep 17 00:00:00 2001 From: schneefux Date: Thu, 12 Oct 2017 08:05:24 +0200 Subject: don't log afk match as error (fixed) --- worker.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/worker.py b/worker.py index 94b904b..b33ff66 100644 --- a/worker.py +++ b/worker.py @@ -225,11 +225,11 @@ def process(): if len(match.rosters) < 2 \ or len(match.rosters[0].participants) < 3 \ or len(match.rosters[1].participants) < 3: - logger.info("got an invalid matchup %s", match.api_id) + logger.error("got an invalid matchup %s", match.api_id) match.trueskill_quality = 0 continue if anyAfk: - logger.error("got an afk matchup %s", match.api_id) + logger.info("got an afk matchup %s", match.api_id) match.trueskill_quality = 0 continue -- cgit v1.3.1