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

Commit

Permalink
Fix the logger message
Browse files Browse the repository at this point in the history
  • Loading branch information
tuojamie committed Oct 28, 2022
1 parent 2871546 commit ac5184f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions synapse/app/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,15 +399,15 @@ def listen_http(
context_factory,
reactor=reactor,
)
logger.info("Synapse worker now listening on port %d (TLS)", port)
logger.info("Synapse now listening on TCP port %d (TLS)", port)
else:
ports = listen_tcp(
bind_addresses,
port,
site,
reactor=reactor,
)
logger.info("Synapse worker now listening on port %d", port)
logger.info("Synapse now listening on TCP port %d", port)
return ports


Expand Down

0 comments on commit ac5184f

Please sign in to comment.