mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 16:38:19 +01:00
feat(federation): 🔊 Add processing finished log
This commit is contained in:
parent
b333ecc816
commit
40e7903d90
10
worker.ts
10
worker.ts
|
|
@ -188,7 +188,15 @@ export const inboxWorker = new Worker<InboxJobData, Response, InboxJobType>(
|
|||
ip,
|
||||
);
|
||||
|
||||
return await processor.process();
|
||||
const output = await processor.process();
|
||||
|
||||
logger.debug(
|
||||
`${chalk.green(
|
||||
"✔",
|
||||
)} Finished processing entity ${chalk.bold(data.id)}`,
|
||||
);
|
||||
|
||||
return output;
|
||||
}
|
||||
|
||||
default: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue