From 5300799b6e87908c97174f0fb8c00f5ab1efad26 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Sat, 23 Aug 2025 23:57:50 -0700 Subject: [PATCH] Update index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index d99dafb..18cfdfc 100644 --- a/index.html +++ b/index.html @@ -255,7 +255,7 @@ class SingleRunWS { } }; this.ws.onmessage = (e) => { - window.SUNE.log(`WS msg: ${e.data.slice(0,80)}`); + // window.SUNE.log(`WS msg: ${e.data.slice(0,80)}`); let m; try { m = JSON.parse(e.data); } catch { return; } if (m.type === "delta" && typeof m.seq === "number" && m.seq > this.lastSeq) { this.lastSeq = m.seq;