chore(desktop): log OutboxDispatcher summary per follow-set change

One-line summary log after loadKind3ViaOutbox so reviewers and manual
testers can confirm the outbox pipeline actually fired without wiring
in a full metrics collector. Shape:

  DEBUG: [WotOutbox] fetchKind3Only authors=N covered=M fallback=K
                     kind10002=X kind3=Y

Zero overhead when the log level is above DEBUG.
This commit is contained in:
nrobi144
2026-07-07 16:47:44 +03:00
parent 0a631d0730
commit a7e91ac5f6
@@ -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()
}
}