mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-24 03:29:28 +01:00
clientbot: log SASL failures to warning instead of info
This commit is contained in:
parent
651752d23d
commit
8b0b4bfcc4
@ -467,7 +467,8 @@ class ClientbotWrapperProtocol(Protocol):
|
||||
"""
|
||||
Handles SASL authentication status reports.
|
||||
"""
|
||||
log.info('(%s) %s', self.irc.name, args[-1])
|
||||
logfunc = log.info if command == '903' else log.warning
|
||||
logfunc('(%s) %s', self.irc.name, args[-1])
|
||||
self.irc.send('CAP END')
|
||||
handle_903 = handle_902 = handle_905 = handle_906 = handle_907 = handle_904
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user