diff --git a/apps/webapp/app/v3/authenticatedSocketConnection.server.ts b/apps/webapp/app/v3/authenticatedSocketConnection.server.ts index 6be2a2a7f..ce9843878 100644 --- a/apps/webapp/app/v3/authenticatedSocketConnection.server.ts +++ b/apps/webapp/app/v3/authenticatedSocketConnection.server.ts @@ -62,11 +62,11 @@ export class AuthenticatedSocketConnection { }); ws.on("pong", (data) => { - logger.debug("[AuthenticatedSocketConnection] Received pong", { - id: this.id, - envId: this.authenticatedEnv.id, - data, - }); + // logger.debug("[AuthenticatedSocketConnection] Received pong", { + // id: this.id, + // envId: this.authenticatedEnv.id, + // data, + // }); }); this._pingService = new HeartbeatService({ @@ -76,10 +76,10 @@ export class AuthenticatedSocketConnection { return; } - logger.debug("[AuthenticatedSocketConnection] Sending ping", { - id: this.id, - envId: this.authenticatedEnv.id, - }); + // logger.debug("[AuthenticatedSocketConnection] Sending ping", { + // id: this.id, + // envId: this.authenticatedEnv.id, + // }); ws.ping(); },