From 2c2e014ea9e2eb05f2e7b68e8c975fee082fbb1e Mon Sep 17 00:00:00 2001 From: Balearica Date: Sun, 27 Aug 2023 11:46:39 -0700 Subject: [PATCH] Edited logging to fix memory bug per #812 (#814) --- src/worker-script/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/worker-script/index.js b/src/worker-script/index.js index ae0dae0..3541242 100644 --- a/src/worker-script/index.js +++ b/src/worker-script/index.js @@ -58,7 +58,7 @@ const load = async ({ workerId, jobId, payload: { options: { corePath, logging } }; const FS = async ({ workerId, payload: { method, args } }, res) => { - log(`[${workerId}]: FS.${method} with args ${args}`); + log(`[${workerId}]: FS.${method}`); res.resolve(TessModule.FS[method](...args)); };