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 814a9de commit 30a0005Copy full SHA for 30a0005
zmq/ssh/forward.py
@@ -47,14 +47,17 @@ def handle(self):
47
)
48
except Exception as e:
49
logger.debug(
50
- 'Incoming request to %s:%d failed: %s'
51
- % (self.chain_host, self.chain_port, repr(e))
+ 'Incoming request to %s:%d failed: %r',
+ self.chain_host,
52
+ self.chain_port,
53
+ e,
54
55
return
56
if chan is None:
57
- 'Incoming request to %s:%d was rejected by the SSH server.'
- % (self.chain_host, self.chain_port)
58
+ 'Incoming request to %s:%d was rejected by the SSH server.',
59
60
61
62
63
0 commit comments