| Index: third_party/WebKit/Source/modules/webaudio/DefaultAudioDestinationNode.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/DefaultAudioDestinationNode.cpp b/third_party/WebKit/Source/modules/webaudio/DefaultAudioDestinationNode.cpp
|
| index d7bde2ccb7466064c7e5662e344f773d9671475d..a6fc98218628ce1bcaffe083212e6af20df18e90 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/DefaultAudioDestinationNode.cpp
|
| +++ b/third_party/WebKit/Source/modules/webaudio/DefaultAudioDestinationNode.cpp
|
| @@ -82,7 +82,7 @@ void DefaultAudioDestinationHandler::uninitialize()
|
| void DefaultAudioDestinationHandler::createDestination()
|
| {
|
| float hardwareSampleRate = AudioDestination::hardwareSampleRate();
|
| - WTF_LOG(WebAudio, ">>>> hardwareSampleRate = %f\n", hardwareSampleRate);
|
| + VLOG(1) << ">>>> hardwareSampleRate = " << hardwareSampleRate;
|
|
|
| m_destination = AudioDestination::create(*this, m_inputDeviceId, m_numberOfInputChannels, channelCount(), hardwareSampleRate, context()->getSecurityOrigin());
|
| }
|
|
|