From 89f9b46ec0928ef8d38770132cfe7a8c71484fda Mon Sep 17 00:00:00 2001 From: James Lu Date: Mon, 15 May 2017 21:32:41 -0700 Subject: [PATCH] relay: demote "PM from server" warnings to debug InspIRCd's m_chanlog.so sends these on purpose, so it's best not to warn about this "feature" endlessly... --- plugins/relay.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/relay.py b/plugins/relay.py index c0aa1f8..ed6e70f 100644 --- a/plugins/relay.py +++ b/plugins/relay.py @@ -1050,8 +1050,8 @@ def handle_messages(irc, numeric, command, args): # but whatever). return elif (numeric in irc.servers) and (not notice): - log.warning('(%s) relay.handle_messages: dropping PM from server %s to %s', - irc.name, numeric, target) + log.debug('(%s) relay.handle_messages: dropping PM from server %s to %s', + irc.name, numeric, target) return relay = get_relay((irc.name, target))