From f8cc29752222062714a617db38870b76e5554d6e Mon Sep 17 00:00:00 2001 From: James Lu Date: Thu, 26 Nov 2015 22:52:29 -0800 Subject: [PATCH] unreal: remove "possible desync" warning in _getNick --- protocols/unreal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/unreal.py b/protocols/unreal.py index a2d67ca..e5623f2 100644 --- a/protocols/unreal.py +++ b/protocols/unreal.py @@ -446,7 +446,7 @@ class UnrealProtocol(TS6BaseProtocol): in that it returns the original text instead of None, if no matching nick is found.""" target = utils.nickToUid(self.irc, target) or target if target not in self.irc.users and not utils.isChannel(target): - log.warning("(%s) Possible desync? Got command target %s, who " + log.debug("(%s) Possible desync? Got command target %s, who " "isn't in our user list!", self.irc.name, target) return target