From 6682a857b7182a359595ecdd7199e81d43d4b591 Mon Sep 17 00:00:00 2001 From: "enne@chromium.org" Date: Tue, 11 Feb 2014 20:47:43 +0000 Subject: Make CoreAudio::IsSupported VLOG instead of LOG This function adds error log spam to unrelated tests. Changing these errors to be VLOG like many other calls in this file so that only folks interested in audio can get these logs. BUG=339891 Review URL: https://codereview.chromium.org/155823004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250494 0039d316-1c4b-4281-b951-d872f2087c98 --- media/audio/win/core_audio_util_win.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'media/audio') diff --git a/media/audio/win/core_audio_util_win.cc b/media/audio/win/core_audio_util_win.cc index 7d3bee7..cf2c51c 100644 --- a/media/audio/win/core_audio_util_win.cc +++ b/media/audio/win/core_audio_util_win.cc @@ -154,7 +154,7 @@ bool CoreAudioUtil::IsSupported() { // It is possible to force usage of WaveXxx APIs by using a command line flag. const CommandLine* cmd_line = CommandLine::ForCurrentProcess(); if (cmd_line->HasSwitch(switches::kForceWaveAudio)) { - LOG(WARNING) << "Forcing usage of Windows WaveXxx APIs"; + DVLOG(1) << "Forcing usage of Windows WaveXxx APIs"; return false; } -- cgit v1.1