diff --git a/src/common/connection.py b/src/common/connection.py
index 2203a4ca057b9f43e931cb267e2883829ad2400c..539964b1713ad7d7ab44c4f152173a0d42a0575b 100644
--- a/src/common/connection.py
+++ b/src/common/connection.py
@@ -1925,7 +1925,7 @@ def process(self, timeout):
 				if self.connection:
 					self.connection.Process(timeout)
 			except:
-				gajim.log.debug(_('error appeared while processing xmpp:'))
+				gajim.log.debug(_('A protocol error has occured:'))
 				traceback.print_exc()
 				self.connected = 0
 				self.dispatch('STATUS', 'offline')
@@ -1934,7 +1934,7 @@ def process(self, timeout):
 				try:
 					self.connection.disconnect()
 				except:
-					gajim.log.debug(_('error appeared while processing xmpp:'))
+					gajim.log.debug(_('A protocol error has occured:'))
 					traceback.print_exc()
 				self.connection = None
 # END Connection