Add unsuitable audio output to to-string logic in EventLogger

PiperOrigin-RevId: 739875995
(cherry picked from commit 75a067a223330d869ecfc87bd170eaf00f55a866)
This commit is contained in:
ibaker 2025-03-24 03:32:58 -07:00 committed by tonihei
parent 3c4410e967
commit 1d2019b770

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 "?";
}