Edited logging to fix memory bug per #812 (#814)

master
Balearica 1 year ago committed by GitHub
parent 8fce839636
commit 2c2e014ea9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      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));
};

Loading…
Cancel
Save