diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-10-11 18:19:25 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-10-11 18:19:25 +0200 |
| commit | 567b2f173f27c9e1426d8d62b5de9536d47106ae (patch) | |
| tree | 7d54ea00d51dcd7e1fbeb387802f8ca1148fd05e | |
| parent | 6f71b73c0b1beb483bd8f6a57446b32e5e5889ac (diff) | |
| download | analyzer-567b2f173f27c9e1426d8d62b5de9536d47106ae.tar.gz analyzer-567b2f173f27c9e1426d8d62b5de9536d47106ae.zip | |
don't log afk matches as error
| -rw-r--r-- | worker.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: |
