AudioService: remove logging from adjustMasterVolume that was left in by mistake
Change-Id: I75c430d2c50c4cab3b6207efab5a6f11aed728d2 Signed-off-by: Mike Lockwood <lockwood@google.com>
This commit is contained in:
@@ -601,7 +601,6 @@ public class AudioService extends IAudioService.Stub {
|
||||
ensureValidDirection(direction);
|
||||
|
||||
float volume = AudioSystem.getMasterVolume();
|
||||
Log.d(TAG, "adjustMasterVolume old=" + volume);
|
||||
if (volume >= 0.0) {
|
||||
// get current master volume adjusted to 0 to 100
|
||||
int oldVolume = getMasterVolume();
|
||||
@@ -618,7 +617,6 @@ public class AudioService extends IAudioService.Stub {
|
||||
Math.round(volume * (float)1000.0), 0, null, PERSIST_DELAY);
|
||||
sendMasterVolumeUpdate(flags, oldVolume, getMasterVolume());
|
||||
}
|
||||
Log.d(TAG, "adjustMasterVolume new=" + volume);
|
||||
}
|
||||
|
||||
/** @see AudioManager#setStreamVolume(int, int, int) */
|
||||
|
||||
Reference in New Issue
Block a user