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] : []))