From 2fe35a4e3db95cda2b638f611f54e1e9c72a1608 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerg=C5=91=20M=C3=B3ricz?= Date: Tue, 3 Jun 2025 16:24:02 +0200 Subject: [PATCH] remove extraneous log --- apps/api/src/scraper/scrapeURL/engines/index/index.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/apps/api/src/scraper/scrapeURL/engines/index/index.ts b/apps/api/src/scraper/scrapeURL/engines/index/index.ts index 321b9321..5b7b45b0 100644 --- a/apps/api/src/scraper/scrapeURL/engines/index/index.ts +++ b/apps/api/src/scraper/scrapeURL/engines/index/index.ts @@ -16,13 +16,6 @@ export async function sendDocumentToIndex(meta: Meta, document: Document) { || Object.keys(meta.options.headers).length === 0 ); - meta.logger.warn("shouldCache", { - shouldCache, - winnerEngine: meta.winnerEngine !== "cache" && meta.winnerEngine !== "index" && meta.winnerEngine !== "index;documents", - featureFlags: !meta.featureFlags.has("actions"), - headers: meta.options.headers === undefined || Object.keys(meta.options.headers).length === 0, - }); - if (!shouldCache) { return document; }