diff options
author | Pavel Labath <labath@google.com> | 2017-02-06 21:46:22 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2017-02-06 21:46:22 +0000 |
commit | 250858a01e6dc70e885282b043d22f4f6880be31 (patch) | |
tree | 0e793dcb60b86346121abfe44970cfe91e1afa43 /lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp | |
parent | 0e92fbb59c980fc89564248d8422ce58fa475f10 (diff) | |
download | bcm5719-llvm-250858a01e6dc70e885282b043d22f4f6880be31.tar.gz bcm5719-llvm-250858a01e6dc70e885282b043d22f4f6880be31.zip |
Remove verbose category in the kdp channel
llvm-svn: 294244
Diffstat (limited to 'lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp b/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp index 121418dad5d..27f742861d3 100644 --- a/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp +++ b/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp @@ -518,8 +518,7 @@ bool ProcessKDP::UpdateThreadList(ThreadList &old_thread_list, ThreadList &new_thread_list) { // locker will keep a mutex locked until it goes out of scope Log *log(ProcessKDPLog::GetLogIfAllCategoriesSet(KDP_LOG_THREAD)); - if (log && log->GetMask().Test(KDP_LOG_VERBOSE)) - log->Printf("ProcessKDP::%s (pid = %" PRIu64 ")", __FUNCTION__, GetID()); + LLDB_LOGV(log, "pid = {0}", GetID()); // Even though there is a CPU mask, it doesn't mean we can see each CPU // individually, there is really only one. Lets call this thread 1. |