diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-02-17 13:34:17 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-02-17 13:34:17 +0900 |
| commit | 93e7aad44e137007ecbc16e661d372be51f637a8 (patch) | |
| tree | b84d015ccf97276d90104c250c450b0763d573d0 /packages/backend/src | |
| parent | enhance(frontend): CWの注釈で入力済みの文字数を表示する (#15... (diff) | |
| download | sharkey-93e7aad44e137007ecbc16e661d372be51f637a8.tar.gz sharkey-93e7aad44e137007ecbc16e661d372be51f637a8.tar.bz2 sharkey-93e7aad44e137007ecbc16e661d372be51f637a8.zip | |
tweak error log
Diffstat (limited to 'packages/backend/src')
| -rw-r--r-- | packages/backend/src/queue/processors/InboxProcessorService.ts | 4 |
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の検証 |