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

Commit

Permalink
Fix b'ab' noise in logs
Browse files Browse the repository at this point in the history
  • Loading branch information
richvdh committed Feb 1, 2019
1 parent 582786f commit e9779a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synapse/http/federation/matrix_federation_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ def __init__(self, reactor, host, port, *args, **kwargs):
self.ep = HostnameEndpoint(reactor, host, port, *args, **kwargs)

def connect(self, protocol_factory):
logger.info("Connecting to %s:%i", self.host, self.port)
logger.info("Connecting to %s:%i", self.host.decode("ascii"), self.port)
return self.ep.connect(protocol_factory)


Expand Down

0 comments on commit e9779a6

Please sign in to comment.