Removes redundant log warning in WebRtcAudioManager.

Trivial patch which avoids logs that are of no value.

BUG=NONE

Review-Url: https://codereview.webrtc.org/2250403002
Cr-Commit-Position: refs/heads/master@{#13799}
This commit is contained in:
henrika 2016-08-17 08:43:52 -07:00 committed by Commit bot
parent 86c96948e3
commit 4a42900540

View File

@ -110,8 +110,6 @@ public class WebRtcAudioManager {
Logging.d(TAG, "VOICE_CALL stream volume: "
+ audioManager.getStreamVolume(AudioManager.STREAM_VOICE_CALL)
+ " (max=" + maxVoiceCallVolume + ")");
} else {
Logging.w(TAG, "Invalid audio mode: " + AUDIO_MODES[mode]);
}
}
}