From 0569d93db7a8d06cf59a0aee7cafd4b11003babd Mon Sep 17 00:00:00 2001 From: "andrew@webrtc.org" Date: Wed, 9 Apr 2014 17:48:48 +0000 Subject: [PATCH] Move a chatty creation log in neteq to LS_VERBOSE. R=henrik.lundin@webrtc.org Review URL: https://webrtc-codereview.appspot.com/11429004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5876 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/modules/audio_coding/neteq4/neteq_impl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc/modules/audio_coding/neteq4/neteq_impl.cc b/webrtc/modules/audio_coding/neteq4/neteq_impl.cc index 97e1874ca7..8ab6205ec0 100644 --- a/webrtc/modules/audio_coding/neteq4/neteq_impl.cc +++ b/webrtc/modules/audio_coding/neteq4/neteq_impl.cc @@ -97,7 +97,7 @@ NetEqImpl::NetEqImpl(int fs, "Changing to 8000 Hz."; fs = 8000; } - LOG(LS_INFO) << "Create NetEqImpl object with fs = " << fs << "."; + LOG(LS_VERBOSE) << "Create NetEqImpl object with fs = " << fs << "."; fs_hz_ = fs; fs_mult_ = fs / 8000; output_size_samples_ = kOutputSizeMs * 8 * fs_mult_;