From 610fe9de6d8fe6e6dc3c39c38ef6f36927668e12 Mon Sep 17 00:00:00 2001 From: Zef Hemel Date: Fri, 2 Jun 2023 13:20:04 +0200 Subject: [PATCH] Console logs --- plugs/collab/collab.ts | 2 +- web/sync_service.ts | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/plugs/collab/collab.ts b/plugs/collab/collab.ts index e334ccd1..0102768c 100644 --- a/plugs/collab/collab.ts +++ b/plugs/collab/collab.ts @@ -186,7 +186,7 @@ async function ping() { await clientId, currentPage, ); - console.log("Collab ID", collabId); + // console.log("Collab ID", collabId); if (!collabId && currentCollabId) { // Stop collab console.log("Stopping collab"); diff --git a/web/sync_service.ts b/web/sync_service.ts index 8138cc40..203b9d72 100644 --- a/web/sync_service.ts +++ b/web/sync_service.ts @@ -60,10 +60,10 @@ export class SyncService { if (!this.isSyncCandidate(path)) { // So we're editing a page and just saved it, but it's not a sync candidate // Assumption: we're in collab mode for this file, so we're going to constantly update our local hash - console.log( - "Locally updating last modified in snapshot becaus we're in collab mode", - meta, - ); + // console.log( + // "Locally updating last modified in snapshot becaus we're in collab mode", + // meta, + // ); await this.updateLocalLastModified(path, meta.lastModified); } });