diff --git a/desktopApp/src/jvmMain/kotlin/com/vitorpamplona/amethyst/desktop/Main.kt b/desktopApp/src/jvmMain/kotlin/com/vitorpamplona/amethyst/desktop/Main.kt index e8ad5d343d..93c9eb6d1c 100644 --- a/desktopApp/src/jvmMain/kotlin/com/vitorpamplona/amethyst/desktop/Main.kt +++ b/desktopApp/src/jvmMain/kotlin/com/vitorpamplona/amethyst/desktop/Main.kt @@ -1598,7 +1598,14 @@ fun MainContent( } else -> { launch { - subscriptionsCoordinator.loadKind3ViaOutbox(follows) + val result = subscriptionsCoordinator.loadKind3ViaOutbox(follows) + Log.d("WotOutbox") { + "fetchKind3Only authors=${result.authorsRequested} " + + "covered=${result.outboxCoveredAuthors} " + + "fallback=${result.fallbackAuthors} " + + "kind10002=${result.kind10002Received} " + + "kind3=${result.kind3Received}" + } iAccount.wotService.markReadyOnce() } }