diff --git a/feature/voiceburst/src/commonMain/kotlin/org/meshtastic/feature/voiceburst/ui/VoiceBurstViewModel.kt b/feature/voiceburst/src/commonMain/kotlin/org/meshtastic/feature/voiceburst/ui/VoiceBurstViewModel.kt index a507c2bf7..b0560e728 100644 --- a/feature/voiceburst/src/commonMain/kotlin/org/meshtastic/feature/voiceburst/ui/VoiceBurstViewModel.kt +++ b/feature/voiceburst/src/commonMain/kotlin/org/meshtastic/feature/voiceburst/ui/VoiceBurstViewModel.kt @@ -230,7 +230,7 @@ class VoiceBurstViewModel( if (success) { lastSentTimestamp = Clock.System.now().toEpochMilliseconds() - Logger.i(tag = TAG) { "Voice Burst broadcasted: ${audioBytes.size} bytes, ${durationMs}ms" } + Logger.i(tag = TAG) { "Voice Burst sent to $destNodeId: ${audioBytes.size} bytes, ${durationMs}ms" } _state.update { VoiceBurstState.Sent } delay(SENT_DISPLAY_MS) _state.update { VoiceBurstState.Idle }