chore: Remove debug console.logs.

This commit is contained in:
greysoh 2024-04-27 14:19:35 -04:00
parent c8f317b0e5
commit 035c1e5b8f
No known key found for this signature in database
GPG key ID: FE0F173B8FC01571

View file

@ -114,8 +114,6 @@ 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);