INFO -> DEBUG

This commit is contained in:
James Vega 2005-01-06 03:42:40 +00:00
parent 3598a0ac28
commit d32d6791fe
1 changed files with 4 additions and 4 deletions

View File

@ -107,9 +107,9 @@ class AutoMode(callbacks.Privmsg):
irc.queueMsg(msgmaker(channel, msg.nick))
raise Continue # Even if fallthrough, let's only do one.
elif not fallthrough:
self.log.info('%s has %s, but supybot.plugins.AutoMode.%s '
'is not enabled in %s, refusing to fall '
'through.', msg.prefix, cap, type, channel)
self.log.debug('%s has %s, but supybot.plugins.AutoMode.%s'
' is not enabled in %s, refusing to fall '
'through.', msg.prefix, cap, type, channel)
raise Continue
try:
do('op')
@ -132,7 +132,7 @@ class AutoMode(callbacks.Privmsg):
schedule.addEvent(unban, time.time()+period)
irc.queueMsg(ircmsgs.ban(channel, msg.prefix))
irc.queueMsg(ircmsgs.kick(channel, msg.nick))
Class = AutoMode