crossmate

A collaborative crossword app for iOS
Log | Files | Refs | LICENSE

commit 2a54c07c49946496aaf2f657e98d2c5ecd082d09
parent c16306cb4c966d8e0a9ccca03d7f98ef374ed41f
Author: Michael Camilleri <[email protected]>
Date:   Tue, 26 May 2026 01:39:46 +0900

Remove excessive logging

Diffstat:
MWorker/engagement-worker.js | 6------
1 file changed, 0 insertions(+), 6 deletions(-)

diff --git a/Worker/engagement-worker.js b/Worker/engagement-worker.js @@ -84,17 +84,11 @@ export class EngagementRoom { } async webSocketMessage(ws, message) { - const sender = ws.deserializeAttachment(); const data = typeof message === "string" ? message : message.slice(0); for (const peer of this.state.getWebSockets()) { if (peer === ws) continue; peer.send(data); } - console.log("engagement message", { - authorID: sender?.authorID, - deviceID: sender?.deviceID, - bytes: typeof message === "string" ? message.length : message.byteLength - }); } async webSocketClose(ws, code, reason) {