Dial down excessive debug logging

This commit is contained in:
Zef Hemel
2023-08-10 16:09:28 +02:00
parent c13f7edb65
commit c6fce524e6
3 changed files with 21 additions and 16 deletions
+2 -2
View File
@@ -168,7 +168,7 @@ export class Client {
await this.dispatchAppEvent("editor:init");
setInterval(() => {
console.log("Syncing page", this.currentPage, "in background");
// console.log("Syncing page", this.currentPage, "in background");
try {
this.syncService.syncFile(`${this.currentPage!}.md`).catch((e: any) => {
console.error("Interval sync error", e);
@@ -176,7 +176,7 @@ export class Client {
} catch (e: any) {
console.error("Interval sync error", e);
}
console.log("End of kick-off of background sync of", this.currentPage);
// console.log("End of kick-off of background sync of", this.currentPage);
}, pageSyncInterval);
}