diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-10-12 08:05:24 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-10-12 08:05:24 +0200 |
| commit | 332705dbbe31fd6e8391be2e5541c4aec73aff8e (patch) | |
| tree | bd14407bf0f2386c7a3268fd20c16d9c1ae6c434 | |
| parent | 567b2f173f27c9e1426d8d62b5de9536d47106ae (diff) | |
| download | analyzer-332705dbbe31fd6e8391be2e5541c4aec73aff8e.tar.gz analyzer-332705dbbe31fd6e8391be2e5541c4aec73aff8e.zip | |
don't log afk match as error (fixed)release/2.19.0
| -rw-r--r-- | worker.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |
