feat(federation): 🔊 Add processing finished log

This commit is contained in:
Jesse Wierzbinski 2024-11-24 22:06:32 +01:00
parent b333ecc816
commit 40e7903d90
No known key found for this signature in database

View file

@ -188,7 +188,15 @@ export const inboxWorker = new Worker<InboxJobData, Response, InboxJobType>(
ip, ip,
); );
return await processor.process(); const output = await processor.process();
logger.debug(
`${chalk.green(
"✔",
)} Finished processing entity ${chalk.bold(data.id)}`,
);
return output;
} }
default: { default: {