diff options
| author | 2024-09-03 22:43:55 +0000 | |
|---|---|---|
| committer | 2024-09-03 22:43:55 +0000 | |
| commit | 8c528366e319db8ce7ad67d8a4158de69cd9d3d1 (patch) | |
| tree | ca05796b74d807dcb1ffa488ff5ca0f81e3d9fc6 | |
| parent | 02aebb4226738a3fe74fa96bd3d94c56e08c9f17 (diff) | |
| parent | 464510d7cf77c951d02d62c98c8d74b27d7fe8ab (diff) | |
Merge "Add callingPackageName to abandonAudioFocus() log" into main
| -rw-r--r-- | services/core/java/com/android/server/audio/MediaFocusControl.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/audio/MediaFocusControl.java b/services/core/java/com/android/server/audio/MediaFocusControl.java index 70f319321d30..7e263560b8a1 100644 --- a/services/core/java/com/android/server/audio/MediaFocusControl.java +++ b/services/core/java/com/android/server/audio/MediaFocusControl.java @@ -1302,7 +1302,7 @@ public class MediaFocusControl implements PlayerFocusEnforcer { mEventLogger.enqueue((new EventLogger.StringEvent( "abandonAudioFocus() from uid/pid " + Binder.getCallingUid() + "/" + Binder.getCallingPid() - + " clientId=" + clientId)) + + " clientId=" + clientId + " callingPack=" + callingPackageName)) .printLog(TAG)); try { // this will take care of notifying the new focus owner if needed |