summaryrefslogtreecommitdiff
path: root/packages/backend/src/queue/processors
diff options
context:
space:
mode:
authorsyuilo <4439005+syuilo@users.noreply.github.com>2025-02-17 13:34:17 +0900
committersyuilo <4439005+syuilo@users.noreply.github.com>2025-02-17 13:34:17 +0900
commit93e7aad44e137007ecbc16e661d372be51f637a8 (patch)
treeb84d015ccf97276d90104c250c450b0763d573d0 /packages/backend/src/queue/processors
parentenhance(frontend): CWの注釈で入力済みの文字数を表示する (#15... (diff)
downloadsharkey-93e7aad44e137007ecbc16e661d372be51f637a8.tar.gz
sharkey-93e7aad44e137007ecbc16e661d372be51f637a8.tar.bz2
sharkey-93e7aad44e137007ecbc16e661d372be51f637a8.zip
tweak error log
Diffstat (limited to 'packages/backend/src/queue/processors')
-rw-r--r--packages/backend/src/queue/processors/InboxProcessorService.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/backend/src/queue/processors/InboxProcessorService.ts b/packages/backend/src/queue/processors/InboxProcessorService.ts
index 004fe1382d..079e014da8 100644
--- a/packages/backend/src/queue/processors/InboxProcessorService.ts
+++ b/packages/backend/src/queue/processors/InboxProcessorService.ts
@@ -107,12 +107,12 @@ export class InboxProcessorService implements OnApplicationShutdown {
// それでもわからなければ終了
if (authUser == null) {
- throw new Bull.UnrecoverableError('skip: failed to resolve user');
+ throw new Bull.UnrecoverableError(`skip: failed to resolve user ${getApId(activity.actor)}`);
}
// publicKey がなくても終了
if (authUser.key == null) {
- throw new Bull.UnrecoverableError('skip: failed to resolve user publicKey');
+ throw new Bull.UnrecoverableError(`skip: failed to resolve user publicKey ${getApId(activity.actor)}`);
}
// HTTP-Signatureの検証