diff --git a/worker.ts b/worker.ts index e8539a1a..249b0a1a 100644 --- a/worker.ts +++ b/worker.ts @@ -188,7 +188,15 @@ export const inboxWorker = new Worker( ip, ); - return await processor.process(); + const output = await processor.process(); + + logger.debug( + `${chalk.green( + "✔", + )} Finished processing entity ${chalk.bold(data.id)}`, + ); + + return output; } default: {