diff --git a/system_wrappers/source/rw_lock_win.cc b/system_wrappers/source/rw_lock_win.cc index 1d222d23d0..1debe7d97a 100644 --- a/system_wrappers/source/rw_lock_win.cc +++ b/system_wrappers/source/rw_lock_win.cc @@ -10,7 +10,7 @@ #include "system_wrappers/source/rw_lock_win.h" -#include "system_wrappers/include/trace.h" +#include "rtc_base/logging.h" namespace webrtc { @@ -69,7 +69,7 @@ bool RWLockWin::LoadModule() { if (!library) { return false; } - WEBRTC_TRACE(kTraceStateInfo, kTraceUtility, -1, "Loaded Kernel.dll"); + LOG(LS_VERBOSE) << "Loaded Kernel.dll"; initialize_srw_lock = (InitializeSRWLock)GetProcAddress(library, "InitializeSRWLock"); @@ -88,7 +88,7 @@ bool RWLockWin::LoadModule() { if (initialize_srw_lock && acquire_srw_lock_exclusive && release_srw_lock_exclusive && acquire_srw_lock_shared && release_srw_lock_shared) { - WEBRTC_TRACE(kTraceStateInfo, kTraceUtility, -1, "Loaded Native RW Lock"); + LOG(LS_VERBOSE) << "Loaded Native RW Lock"; native_rw_locks_supported = true; } return native_rw_locks_supported;