Skip to content
Snippets Groups Projects
Commit 7a3fb890 authored by Laurent Bachelier's avatar Laurent Bachelier Committed by Eric S. Raymond
Browse files

Show traceback on higher debug levels


Signed-off-by: default avatarEric S. Raymond <esr@thyrsus.com>
parent 476ed5d9
No related branches found
No related tags found
No related merge requests found
......@@ -540,6 +540,7 @@ class Connection:
self.connection.privmsg(channel, segment)
except ValueError as err:
self.irker.irc.debug(1, "irclib rejected a message to %s on %s because: %s" % (channel, self.servername, str(err)))
self.irker.irc.debug(50, err.format_exc())
time.sleep(ANTI_FLOOD_DELAY)
self.last_xmit = self.channels_joined[channel] = time.time()
self.irker.irc.debug(1, "XMIT_TTL bump (%s transmission) at %s" % (self.servername, time.asctime()))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment