# HG changeset patch # User Charly COSTE # Date 1268088097 -3600 # Node ID 49c57daff4d7e56b03f86768270eae69b5f104d0 # Parent 5d6ff929e6bcfbc3db26206c2c4645aa6bf261c2 minor fix in Bridge, don't log the same error twice Signed-off-by: Charly COSTE diff --git a/bridge.py b/bridge.py --- a/bridge.py +++ b/bridge.py @@ -132,7 +132,7 @@ class Bridge: except: trace = traceback.format_exc() self.bot.error(say_levels.error, 'failed to connect to the XMPP room of bridge "'+str(self)+'", stopping bridge\n'+trace, send_to_admins=True) - self.stop(message='Failed to connect to the XMPP room, stopping bridge') + self.stop(message='Failed to connect to the XMPP room, stopping bridge', log=False) def add_participant(self, from_protocol, nickname, real_jid=None):