mirror of
https://github.com/vitorpamplona/amethyst.git
synced 2026-08-09 08:04:45 +00:00
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:
@@ -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()
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user