diff --git a/media/java/android/media/AudioSystem.java b/media/java/android/media/AudioSystem.java index 81ef064005218..f1f6cb1f42be2 100644 --- a/media/java/android/media/AudioSystem.java +++ b/media/java/android/media/AudioSystem.java @@ -741,8 +741,6 @@ public class AudioSystem synchronized (AudioSystem.class) { cb = sRoutingUpdateCallback; } - //### - Log.i(TAG, "#################### update"); if (cb == null) { Log.e(TAG, "routing update from APM was not captured"); return; diff --git a/services/core/java/com/android/server/audio/AudioService.java b/services/core/java/com/android/server/audio/AudioService.java index eed29772fec09..391a64ccf0e36 100644 --- a/services/core/java/com/android/server/audio/AudioService.java +++ b/services/core/java/com/android/server/audio/AudioService.java @@ -3467,8 +3467,6 @@ public class AudioService extends IAudioService.Stub /** @see AudioManager#getStreamVolume(int) */ public int getStreamVolume(int streamType) { ensureValidStreamType(streamType); - Log.e(TAG, "AudioSystem.getDevicesForStream In AudioService from u/pid" - + Binder.getCallingUid() + "/" + Binder.getCallingPid()); int device = getDeviceForStream(streamType); synchronized (VolumeStreamState.class) { int index = mStreamStates[streamType].getIndex(device);