Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit ac5184f

Browse files
author
Tuomas Ojamies
committed
Fix the logger message
1 parent 2871546 commit ac5184f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

synapse/app/_base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,15 +399,15 @@ def listen_http(
399399
context_factory,
400400
reactor=reactor,
401401
)
402-
logger.info("Synapse worker now listening on port %d (TLS)", port)
402+
logger.info("Synapse now listening on TCP port %d (TLS)", port)
403403
else:
404404
ports = listen_tcp(
405405
bind_addresses,
406406
port,
407407
site,
408408
reactor=reactor,
409409
)
410-
logger.info("Synapse worker now listening on port %d", port)
410+
logger.info("Synapse now listening on TCP port %d", port)
411411
return ports
412412

413413

0 commit comments

Comments
 (0)