Add unsuitable audio output to to-string logic in EventLogger

PiperOrigin-RevId: 739875995
This commit is contained in:
ibaker 2025-03-24 03:32:58 -07:00 committed by Copybara-Service
parent d5dcbf4a12
commit 75a067a223

View File

@ -739,6 +739,8 @@ public class EventLogger implements AnalyticsListener {
return "NONE";
case Player.PLAYBACK_SUPPRESSION_REASON_TRANSIENT_AUDIO_FOCUS_LOSS:
return "TRANSIENT_AUDIO_FOCUS_LOSS";
case Player.PLAYBACK_SUPPRESSION_REASON_UNSUITABLE_AUDIO_OUTPUT:
return "UNSUITABLE_AUDIO_OUTPUT";
default:
return "?";
}