fix(scrapeURL/pdf/mu): remove log

This commit is contained in:
Gergő Móricz 2025-05-23 13:47:34 +02:00
parent b03670a8b7
commit bfe731309c

View File

@ -87,7 +87,6 @@ async function scrapePDFWithRunPodMU(
let result: { markdown: string } | undefined = podStart.output;
if (status === "IN_QUEUE" || status === "IN_PROGRESS") {
meta.logger.info("RunPod MU returned while in status " + status);
do {
abort?.throwIfAborted();
await new Promise(resolve => setTimeout(resolve, 2500));
@ -110,7 +109,6 @@ async function scrapePDFWithRunPodMU(
mock: meta.mock,
abort,
});
meta.logger.info("RunPod MU status " + podStatus.status);
status = podStatus.status;
result = podStatus.output;
} while (status !== "COMPLETED" && status !== "FAILED");