mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-20 01:19:26 +01:00
Changed the queuing messages to DEBUG, there's no need for users to care.
This commit is contained in:
parent
a1e429379b
commit
c2759270ee
@ -593,9 +593,9 @@ class Irc(IrcCommandDispatcher):
|
|||||||
if self.password:
|
if self.password:
|
||||||
log.info('Sending PASS command, not logging the password.')
|
log.info('Sending PASS command, not logging the password.')
|
||||||
self.queueMsg(ircmsgs.password(self.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))
|
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.ident, self.user)
|
||||||
self.queueMsg(ircmsgs.user(self.ident, self.user))
|
self.queueMsg(ircmsgs.user(self.ident, self.user))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user