diff --git a/src/main/kotlin/dev/usbharu/hideout/activitypub/service/inbox/InboxJobProcessor.kt b/src/main/kotlin/dev/usbharu/hideout/activitypub/service/inbox/InboxJobProcessor.kt index 301ac7ce..ec25c727 100644 --- a/src/main/kotlin/dev/usbharu/hideout/activitypub/service/inbox/InboxJobProcessor.kt +++ b/src/main/kotlin/dev/usbharu/hideout/activitypub/service/inbox/InboxJobProcessor.kt @@ -106,7 +106,7 @@ class InboxJobProcessor( if (activityPubProcessor == null) { logger.warn("ActivityType {} is not support.", param.type) - throw IllegalStateException("ActivityPubProcessor not found.") + throw IllegalStateException("ActivityPubProcessor not found. type: ${param.type}") } val value = objectMapper.treeToValue(jsonNode, activityPubProcessor.type())