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 ba7927a commit 90a3d63Copy full SHA for 90a3d63
src/main/java/top/meethigher/proxy/tcp/ReverseTcpProxy.java
@@ -65,7 +65,7 @@ protected ReverseTcpProxy(NetServer netServer, NetClient netClient,
65
);
66
netClient.connect(targetPort, targetHost)
67
.onFailure(e -> {
68
- log.error("failed to connect to {}:{}", targetHost, targetPort, e);
+ log.error("source {} -- {} failed to connect to {}:{}", sourceLocal, sourceRemote, targetHost, targetPort, e);
69
// 若连接目标服务失败,需要断开源头服务
70
sourceSocket.close();
71
})
0 commit comments