From 035c1e5b8fc12efed377c5ae6728897b39040000 Mon Sep 17 00:00:00 2001 From: greysoh Date: Sat, 27 Apr 2024 14:19:35 -0400 Subject: [PATCH] chore: Remove debug console.logs. --- src/backendimpl/ssh.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/backendimpl/ssh.ts b/src/backendimpl/ssh.ts index 71069b1..3f76d9a 100644 --- a/src/backendimpl/ssh.ts +++ b/src/backendimpl/ssh.ts @@ -114,13 +114,11 @@ export class SSHBackendProvider implements BackendBaseClass { const foundProxyEntry = this.proxies.find((i) => i.sourceIP == sourceIP && i.sourcePort == sourcePort && i.destPort == destPort); if (foundProxyEntry) return; - console.log("connection added"); - (async() => { await this.sshInstance.forwardIn("0.0.0.0", destPort, (info, accept, reject) => { const foundProxyEntry = this.proxies.find((i) => i.sourceIP == sourceIP && i.sourcePort == sourcePort && i.destPort == destPort); if (!foundProxyEntry) return reject(); - + const client: ConnectedClient = { ip: info.srcIP, port: info.srcPort,