We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3f5142 commit 4fc4548Copy full SHA for 4fc4548
proxy/core/ssh/listener.py
@@ -103,7 +103,7 @@ def start_port_forward(self, remote_addr: 'HostPort') -> None:
103
handler=self.handler.on_connection,
104
)
105
self.forwarded.add(remote_addr)
106
- logger.debug("%s:%d forwarding successful..." % remote_addr)
+ logger.debug('%s:%d forwarding successful...' % remote_addr)
107
108
def stop_port_forward(self, remote_addr: 'HostPort') -> None:
109
assert self.transport is not None
@@ -128,7 +128,7 @@ def setup(self) -> None:
128
auth_timeout=7,
129
130
logger.debug(
131
- "SSH connection established to %s:%d..."
+ 'SSH connection established to %s:%d...'
132
% (
133
self.flags.tunnel_hostname,
134
self.flags.tunnel_port,
0 commit comments