Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Edited logging to fix memory bug per #812
  • Loading branch information
Balearica committed Aug 27, 2023
1 parent 8fce839 commit 25504bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/worker-script/index.js
Expand Up @@ -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));
};

Expand Down

0 comments on commit 25504bf

Please sign in to comment.