From a5d97c15e7b6dc354db391efe8da49ca36b43fd6 Mon Sep 17 00:00:00 2001 From: James Lu Date: Thu, 20 Oct 2016 20:13:17 -0700 Subject: [PATCH] relay: disable nick collide messages to debug --- plugins/relay.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/relay.py b/plugins/relay.py index 8f76f48..a8fb6d0 100644 --- a/plugins/relay.py +++ b/plugins/relay.py @@ -1511,8 +1511,8 @@ def nick_collide(irc, target): # Force a tagged nick by setting times_tagged to 1. newnick = normalizeNick(irc, remotenet, nick, times_tagged=1) - log.info('(%s) relay.nick_collide: Fixing nick of relay client %r (%s) to %s', - irc.name, target, nick, newnick) + log.debug('(%s) relay.nick_collide: Fixing nick of relay client %r (%s) to %s', + irc.name, target, nick, newnick) irc.proto.nick(target, newnick) def handle_save(irc, numeric, command, args):