From d34bfc7d562f6f3b19dcf9585538423ad2d2d8ef Mon Sep 17 00:00:00 2001 From: not-nullptr <62841684+not-nullptr@users.noreply.github.com> Date: Sun, 13 Apr 2025 18:27:14 +0100 Subject: [PATCH] chore: disable debug for pandoc --- src/lib/workers/pandoc.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/workers/pandoc.ts b/src/lib/workers/pandoc.ts index 84860dc..246ed86 100644 --- a/src/lib/workers/pandoc.ts +++ b/src/lib/workers/pandoc.ts @@ -154,7 +154,7 @@ async function pandoc( new wasiShim.PreopenDirectory("/tmp", new Map()), ]; - const wasi = new wasiShim.WASI(args, env, fds, { debug: true }); + const wasi = new wasiShim.WASI(args, env, fds, { debug: false }); // eslint-disable-next-line @typescript-eslint/no-explicit-any const { instance }: { instance: any } = await WebAssembly.instantiate( wasm,