Repair incorrect log variable reference

This commit is contained in:
Tony Garnock-Jones 2024-03-29 14:02:17 +01:00
parent f2b8b433cc
commit 0429e59ad1
1 changed files with 1 additions and 1 deletions

View File

@ -377,7 +377,7 @@ class _StreamTunnelRelay(TunnelRelay, asyncio.Protocol):
try:
_transport, _protocol = await self._create_connection(system)
except OSError as e:
log.error('%s: Could not connect to server: %s' % (self.__class__.__qualname__, e))
self.facet.log.error('%s: Could not connect to server: %s' % (self.__class__.__qualname__, e))
return False
try: