From a34cdb507a539f1f98c99f520244233fdc47e2e5 Mon Sep 17 00:00:00 2001 From: Sage Abdullah Date: Sun, 3 Dec 2023 19:30:11 +0000 Subject: [PATCH] Remove console.log --- web/src/giscus.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/web/src/giscus.ts b/web/src/giscus.ts index 636e16dc..5aabac16 100644 --- a/web/src/giscus.ts +++ b/web/src/giscus.ts @@ -196,7 +196,7 @@ export class GiscusWidget extends LitElement { } if (data.giscus.signOut) { - console.log(`[giscus] User has logged out. Session has been cleared.`); + console.info(`[giscus] User has logged out. Session has been cleared.`); this.signOut(); return; } @@ -236,7 +236,6 @@ export class GiscusWidget extends LitElement { private sendMessage(message: T) { if (!this.iframeRef?.contentWindow || !this.hasLoaded) return; - console.log({ host: this.host, _host: this._host }); this.iframeRef.contentWindow.postMessage({ giscus: message }, this._host); }