From 6be820480522902778a52f10b08fa5d07bff3e89 Mon Sep 17 00:00:00 2001 From: nyuszika7h Date: Thu, 10 Apr 2014 14:54:53 +0200 Subject: [PATCH] irclib: Remove some useless SASL debug messages --- src/irclib.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/irclib.py b/src/irclib.py index 4526d6c0f..161881d26 100644 --- a/src/irclib.py +++ b/src/irclib.py @@ -954,13 +954,10 @@ class Irc(IrcCommandDispatcher): def do903(self, msg): log.info('%s: SASL authentication successful' % self.network) - log.debug('Sending CAP END command.') self.queueMsg(ircmsgs.IrcMsg(command="CAP", args=('END',))) def do904(self, msg): log.warning('%s: SASL authentication failed' % self.network) - log.debug('Aborting authentication.') - log.debug('Sending CAP END command.') self.queueMsg(ircmsgs.IrcMsg(command="CAP", args=('END',))) def _getNextNick(self):