diff --git a/src/main/kotlin/dev/usbharu/hideout/activitypub/domain/model/Follow.kt b/src/main/kotlin/dev/usbharu/hideout/activitypub/domain/model/Follow.kt index 99e87cf2..0216a2e3 100644 --- a/src/main/kotlin/dev/usbharu/hideout/activitypub/domain/model/Follow.kt +++ b/src/main/kotlin/dev/usbharu/hideout/activitypub/domain/model/Follow.kt @@ -35,6 +35,11 @@ open class Follow( } override fun toString(): String { - return "Follow(apObject='$apObject', actor='$actor', id=$id)" + return "Follow(" + + "apObject='$apObject', " + + "actor='$actor', " + + "id=$id" + + ")" + + " ${super.toString()}" } }