Skip to content

Commit fda258a

Browse files
committed
Fix error message
1 parent 858f98c commit fda258a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

mautrix/bridge/matrix.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -249,9 +249,7 @@ async def wait_for_connection(self) -> None:
249249
f"roundtrip time is {duration} ms (txn ID: {txn_id})"
250250
)
251251
except Exception:
252-
self.log.exception(
253-
"Error checking homeserver -> bridge connection, retrying in 10 seconds"
254-
)
252+
self.log.exception("Error checking homeserver -> bridge connection")
255253
sys.exit(16)
256254
else:
257255
self.log.debug(

0 commit comments

Comments
 (0)