From e4b2ea60ec20fccdfddf3676657d4c1afa341282 Mon Sep 17 00:00:00 2001 From: James Lu Date: Sun, 2 Oct 2016 22:06:46 -0700 Subject: [PATCH] Irc: demote unknown user errors in parseModes() to DEBUG Some ancient services like Anope 1.8 set SVS2MODE +d on users when they connect, even if the user quits right after. Due to lag we may receive the MODE after the QUIT instead of before. (cherry picked from commit ec4e71c8cfb86105a28e7bc0b63d91dcc8c37a60) --- classes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes.py b/classes.py index 3ec84cd..1320ea4 100644 --- a/classes.py +++ b/classes.py @@ -566,7 +566,7 @@ class Irc(): log.debug('(%s) Using self.umodes for this query: %s', self.name, self.umodes) if target not in self.users: - log.warning('(%s) Possible desync! Mode target %s is not in the users index.', self.name, target) + log.debug('(%s) Possible desync! Mode target %s is not in the users index.', self.name, target) return [] # Return an empty mode list supported_modes = self.umodes