irclib: Remove some useless SASL debug messages

This commit is contained in:
nyuszika7h 2014-04-10 14:54:53 +02:00
parent 14e51f6193
commit 6be8204805
1 changed files with 0 additions and 3 deletions

View File

@ -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):