From 795a481aaaeb216c62ddeb7af603628ae5f4cce1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn-Michael=20Miehe?= Date: Sat, 30 Dec 2023 15:21:59 +0000 Subject: [PATCH] remove console.debug --- src/main.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main.ts b/src/main.ts index d955ce2..d8543b3 100644 --- a/src/main.ts +++ b/src/main.ts @@ -8,18 +8,15 @@ async function process_text(text: string): Promise { const codes = new Set(matches.map(([_, code]) => code)); console.log("[lmlfc-bttv]", `searching ${[...codes].length} emotes`); const emotes = await map_parallel(codes, bttv_get_url); - console.debug("matches", matches, "codes", codes, "emotes", emotes); for (const emote of matches.reverse()) { const [match, code] = emote; - console.debug("match", match, "code", code); if (emote.index == undefined) continue; const index = emote.index; if (!emotes.has(code)) continue; const url = emotes.get(code); - console.debug("index", index, "url", url); text = text.substring(0, index) +