From 4906a57a870e5736dc7d3424f260f25a8d290c89 Mon Sep 17 00:00:00 2001 From: Juha Paananen Date: Mon, 15 Apr 2024 20:52:24 +0300 Subject: [PATCH] Remove awesome log statement --- backend/src/compact-history.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/backend/src/compact-history.ts b/backend/src/compact-history.ts index 69c92a67..ff0cee0e 100644 --- a/backend/src/compact-history.ts +++ b/backend/src/compact-history.ts @@ -59,9 +59,6 @@ export async function quickCompactBoardHistory(id: Id): Promise { firstBundle.last_serial, lastSerial, ) - for (const b of bundlesWithData) { - console.log(b.events.events[0]?.serial, b.events.events[b.events.events.length - 1]?.serial) - } const eventArrays = bundlesWithData.map((b) => b.events.events) const events: BoardHistoryEntry[] = eventArrays.flat() const crdtUpdates = bundlesWithData.flatMap((d) => (d.crdt_update ? [d.crdt_update] : []))