From 50941d00016682e66154d2d52a15028e13757bda Mon Sep 17 00:00:00 2001 From: MathMan05 Date: Mon, 18 Nov 2024 12:34:44 -0600 Subject: [PATCH] remove excesive logging --- src/webpage/localuser.ts | 1 - src/webpage/markdown.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/src/webpage/localuser.ts b/src/webpage/localuser.ts index cf18367..364b6b5 100644 --- a/src/webpage/localuser.ts +++ b/src/webpage/localuser.ts @@ -1918,7 +1918,6 @@ class Localuser{ this.MDSearchOptions(map,orginal); } search(str:string,pre:boolean){ - console.log(str); if(!pre){ const match=str.match(this.autofillregex); diff --git a/src/webpage/markdown.ts b/src/webpage/markdown.ts index a600432..0baa143 100644 --- a/src/webpage/markdown.ts +++ b/src/webpage/markdown.ts @@ -960,7 +960,6 @@ function getTextNodeAtPosition(root: Node, index: number):{ } if(lastElm){ const position=(lastElm.textContent as string).length; - console.log(lastElm,lastElm.childNodes,root,position); return{ node: lastElm, position