From f6e656361b52035e63b1226283ce9db74e8c9e81 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Fri, 6 Jan 2023 13:00:10 +0100 Subject: [PATCH] fix(core): update --- ts/00_commitinfo_data.ts | 2 +- ts/smartproxy.classes.networkproxy.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index c8bf47c..3d82f18 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@pushrocks/smartproxy', - version: '3.0.55', + version: '3.0.56', description: 'a proxy for handling high workloads of proxying' } diff --git a/ts/smartproxy.classes.networkproxy.ts b/ts/smartproxy.classes.networkproxy.ts index 2d0632f..4ef72d4 100644 --- a/ts/smartproxy.classes.networkproxy.ts +++ b/ts/smartproxy.classes.networkproxy.ts @@ -260,12 +260,12 @@ JNj2Dr5H0XoLFFnvuvzcRbhlJ9J67JzR+7g= } wsIncoming.on("message", (message, isBinary) => { - console.log("client to upstream", message); + // console.log("client to upstream", message); wsOutgoing.send(message, { binary: isBinary }); }); wsOutgoing.on("message", (message, isBinary) => { - console.log("upstream to client", message); + // console.log("upstream to client", message); wsIncoming.send(message, { binary: isBinary }); }); wsIncoming.on("error", () => wsOutgoing.terminate());