From 9e970274fbff37a35bd748a91c244cda677982c3 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Fri, 27 Aug 2004 07:14:08 +0000 Subject: [PATCH] Debug log already opped messages. --- plugins/Services.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/Services.py b/plugins/Services.py index 031d0f866..6c5c7042d 100644 --- a/plugins/Services.py +++ b/plugins/Services.py @@ -295,6 +295,8 @@ class Services(privmsgs.CapabilityCheckingPrivmsg): channel) elif 'this channel has been registered' in s: self.log.debug('Got "Registered channel" from ChanServ.') + elif 'already opped' in s: + self.log.debug('Got "Already opped" from ChanServ.') else: self.log.warning('Got unexpected notice from ChanServ: %r.', msg)