diff bridge.py @ 251:49c57daff4d7

minor fix in Bridge, don't log the same error twice Signed-off-by: Charly COSTE <changaco@changaco.net>
author Charly COSTE <changaco@changaco.net>
date Mon, 08 Mar 2010 23:41:37 +0100
parents 430eb5052e4d
children 3b318108e9e0
line wrap: on
line diff
--- 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):