diff options
author | Pavel Labath <labath@google.com> | 2017-02-13 11:56:19 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2017-02-13 11:56:19 +0000 |
commit | 45889a28e23cfa06be58d6935fff0bab926b57df (patch) | |
tree | fc3d27a26c0ef31b60614e172041c9723318a740 /lldb/source/Plugins/Process/Windows/Common/DebuggerThread.cpp | |
parent | 828dee1f70b080ed99f8cfa887f9293808fe854e (diff) | |
download | bcm5719-llvm-45889a28e23cfa06be58d6935fff0bab926b57df.tar.gz bcm5719-llvm-45889a28e23cfa06be58d6935fff0bab926b57df.zip |
Try to fix windows build (broken by r294939)
log->Debug is gone, switch to using log->Verbose
llvm-svn: 294944
Diffstat (limited to 'lldb/source/Plugins/Process/Windows/Common/DebuggerThread.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/Windows/Common/DebuggerThread.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/Windows/Common/DebuggerThread.cpp b/lldb/source/Plugins/Process/Windows/Common/DebuggerThread.cpp index 917be186bb4..188bcdba8d4 100644 --- a/lldb/source/Plugins/Process/Windows/Common/DebuggerThread.cpp +++ b/lldb/source/Plugins/Process/Windows/Common/DebuggerThread.cpp @@ -282,7 +282,7 @@ void DebuggerThread::DebugLoop() { bool should_debug = true; WINLOG_IFALL(WINDOWS_LOG_EVENT, "Entering WaitForDebugEvent loop"); while (should_debug) { - WINLOGD_IFALL(WINDOWS_LOG_EVENT, "Calling WaitForDebugEvent"); + WINLOGV_IFALL(WINDOWS_LOG_EVENT, "Calling WaitForDebugEvent"); BOOL wait_result = WaitForDebugEvent(&dbe, INFINITE); if (wait_result) { DWORD continue_status = DBG_CONTINUE; @@ -331,7 +331,7 @@ void DebuggerThread::DebugLoop() { break; } - WINLOGD_IFALL( + WINLOGV_IFALL( WINDOWS_LOG_EVENT, "DebugLoop calling ContinueDebugEvent(%lu, %lu, %lu) on thread %lu.", dbe.dwProcessId, dbe.dwThreadId, continue_status, |