changeset 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 5d6ff929e6bc
children 93990ebdbbaf
files bridge.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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):