From 8140543e09d929385f79e60c1282584ed6302402 Mon Sep 17 00:00:00 2001 From: AdamISZ Date: Sun, 13 Jan 2019 18:46:39 +0100 Subject: [PATCH] demote nick drop to debug from warn --- jmdaemon/jmdaemon/message_channel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jmdaemon/jmdaemon/message_channel.py b/jmdaemon/jmdaemon/message_channel.py index 1e1c7d6..d7f095b 100644 --- a/jmdaemon/jmdaemon/message_channel.py +++ b/jmdaemon/jmdaemon/message_channel.py @@ -442,7 +442,7 @@ class MessageChannelCollection(object): #Is the nick available on another channel? other_channels = [x for x in self.available_channels() if x != mc] if len(other_channels) == 0: - log.warn( + log.debug( "Cannot reconnect to dropped nick, no connections available.") if self.on_nick_leave: self.on_nick_leave(nick)