From 40d76c8bb6b25a6a7fa49001ca921827e3d13081 Mon Sep 17 00:00:00 2001 From: James Lu Date: Sat, 20 Feb 2016 18:45:11 -0800 Subject: [PATCH] coreplugin: demote successful oper-up messages to debug --- coreplugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coreplugin.py b/coreplugin.py index 2e9161c..c151a54 100644 --- a/coreplugin.py +++ b/coreplugin.py @@ -132,7 +132,7 @@ utils.add_hook(handle_mode, 'MODE') def handle_operup(irc, source, command, args): """Logs successful oper-ups on networks.""" - log.info("(%s) Successful oper-up (opertype %r) from %s", irc.name, args.get('text'), utils.getHostmask(irc, source)) + log.debug("(%s) Successful oper-up (opertype %r) from %s", irc.name, args.get('text'), utils.getHostmask(irc, source)) utils.add_hook(handle_operup, 'CLIENT_OPERED') def handle_services_login(irc, source, command, args):