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 | |
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')
-rw-r--r-- | lldb/source/Plugins/Process/Windows/Common/DebuggerThread.cpp | 4 | ||||
-rw-r--r-- | lldb/source/Plugins/Process/Windows/Common/ProcessWindowsLog.h | 4 |
2 files changed, 2 insertions, 6 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, diff --git a/lldb/source/Plugins/Process/Windows/Common/ProcessWindowsLog.h b/lldb/source/Plugins/Process/Windows/Common/ProcessWindowsLog.h index 8de35611edf..0ec604b677c 100644 --- a/lldb/source/Plugins/Process/Windows/Common/ProcessWindowsLog.h +++ b/lldb/source/Plugins/Process/Windows/Common/ProcessWindowsLog.h @@ -76,10 +76,6 @@ public: WINLOGF_IF(Flags, LogMaskReq::Any, Verbose, __VA_ARGS__) #define WINLOGV_IFALL(Flags, ...) \ WINLOGF_IF(Flags, LogMaskReq::All, Verbose, __VA_ARGS__) -#define WINLOGD_IFANY(Flags, ...) \ - WINLOGF_IF(Flags, LogMaskReq::Any, Debug, __VA_ARGS__) -#define WINLOGD_IFALL(Flags, ...) \ - WINLOGF_IF(Flags, LogMaskReq::All, Debug, __VA_ARGS__) #define WINERR_IFANY(Flags, ...) \ WINLOGF_IF(Flags, LogMaskReq::Any, Error, __VA_ARGS__) #define WINERR_IFALL(Flags, ...) \ |