Skip to content

Commit

Permalink
remove unecessary console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
rjawesome committed Jul 3, 2024
1 parent f0222e2 commit 2fc77e3
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/controllers/threading/threadHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,7 @@ async function queueTaskToWorkers(pool: Piscina, taskInfo: TaskInfo, route: stri
} = {};
const timeout = parseInt(process.env.REQUEST_TIMEOUT ?? (60 * 5).toString()) * 1000;

console.log("handling messages")
fromWorker.on("message", async (msg: ThreadMessage) => {
console.log(msg)
switch (msg.type) {
default:
debug(`WARNING: received untyped message from thread {msg.threadId}`);
Expand Down

0 comments on commit 2fc77e3

Please sign in to comment.