From c2759270ee030156b9e2e759d4778594dd8a2378 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Sun, 10 Oct 2004 04:20:32 +0000 Subject: [PATCH] Changed the queuing messages to DEBUG, there's no need for users to care. --- src/irclib.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/irclib.py b/src/irclib.py index c00b9bd6a..84fabe710 100644 --- a/src/irclib.py +++ b/src/irclib.py @@ -593,9 +593,9 @@ class Irc(IrcCommandDispatcher): if self.password: log.info('Sending PASS command, not logging the password.') self.queueMsg(ircmsgs.password(self.password)) - log.info('Queuing NICK command, nick is %s.', self.nick) + log.debug('Queuing NICK command, nick is %s.', self.nick) self.queueMsg(ircmsgs.nick(self.nick)) - log.info('Queuing USER command, ident is %s, user is %s.', + log.debug('Queuing USER command, ident is %s, user is %s.', self.ident, self.user) self.queueMsg(ircmsgs.user(self.ident, self.user))