Minor fix for debug logging on Android

BUG=NONE

Review URL: https://codereview.webrtc.org/1372873002

Cr-Commit-Position: refs/heads/master@{#10088}
This commit is contained in:
henrika
2015-09-28 04:44:16 -07:00
committed by Commit bot
parent 4fbd145dce
commit d417523194
2 changed files with 2 additions and 2 deletions

View File

@ -209,7 +209,7 @@ class WebRtcAudioEffects {
private WebRtcAudioEffects() {
Logging.d(TAG, "ctor" + WebRtcAudioUtils.getThreadInfo());
for (Descriptor d : AudioEffect.queryEffects()) {
if (effectTypeIsVoIP(d.type)) {
if (effectTypeIsVoIP(d.type) || DEBUG) {
// Only log information for VoIP effects (AEC, AEC and NS).
Logging.d(TAG, "name: " + d.name + ", "
+ "mode: " + d.connectMode + ", "

View File

@ -22,7 +22,7 @@ import android.os.Process;
import org.webrtc.Logging;
class WebRtcAudioTrack {
private static final boolean DEBUG = true;
private static final boolean DEBUG = false;
private static final String TAG = "WebRtcAudioTrack";