mirror of
https://github.com/progval/Limnoria.git
synced 2025-05-06 11:33:39 -05:00
INFO -> DEBUG
This commit is contained in:
parent
3598a0ac28
commit
d32d6791fe
@ -107,9 +107,9 @@ class AutoMode(callbacks.Privmsg):
|
|||||||
irc.queueMsg(msgmaker(channel, msg.nick))
|
irc.queueMsg(msgmaker(channel, msg.nick))
|
||||||
raise Continue # Even if fallthrough, let's only do one.
|
raise Continue # Even if fallthrough, let's only do one.
|
||||||
elif not fallthrough:
|
elif not fallthrough:
|
||||||
self.log.info('%s has %s, but supybot.plugins.AutoMode.%s '
|
self.log.debug('%s has %s, but supybot.plugins.AutoMode.%s'
|
||||||
'is not enabled in %s, refusing to fall '
|
' is not enabled in %s, refusing to fall '
|
||||||
'through.', msg.prefix, cap, type, channel)
|
'through.', msg.prefix, cap, type, channel)
|
||||||
raise Continue
|
raise Continue
|
||||||
try:
|
try:
|
||||||
do('op')
|
do('op')
|
||||||
@ -132,7 +132,7 @@ class AutoMode(callbacks.Privmsg):
|
|||||||
schedule.addEvent(unban, time.time()+period)
|
schedule.addEvent(unban, time.time()+period)
|
||||||
irc.queueMsg(ircmsgs.ban(channel, msg.prefix))
|
irc.queueMsg(ircmsgs.ban(channel, msg.prefix))
|
||||||
irc.queueMsg(ircmsgs.kick(channel, msg.nick))
|
irc.queueMsg(ircmsgs.kick(channel, msg.nick))
|
||||||
|
|
||||||
|
|
||||||
Class = AutoMode
|
Class = AutoMode
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user