Skip to content

Commit

Permalink
Make CoreAudio::IsSupported VLOG instead of LOG
Browse files Browse the repository at this point in the history
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
  • Loading branch information
enne@chromium.org committed Feb 11, 2014
1 parent c1f074f commit 6682a85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion media/audio/win/core_audio_util_win.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 6682a85

Please sign in to comment.