Quiet the default "log enable lldb step" output down a little bit.

git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@142024 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
index e1f86a6..7e2ad1c 100644
--- a/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
+++ b/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
@@ -2539,7 +2539,7 @@
             lldb::BreakpointSP break_sp = m_target.GetBreakpointByID(m_thread_observation_bps[i]);
             if (break_sp)
             {
-                if (log)
+                if (log && log->GetVerbose())
                     log->Printf("Enabled noticing new thread breakpoint.");
                 break_sp->SetEnabled(true);
             }
@@ -2552,7 +2552,7 @@
             Breakpoint *breakpoint = m_target.CreateBreakpoint (NULL, NULL, bp_names[i], eFunctionNameTypeFull, true).get();
             if (breakpoint)
             {
-                if (log)
+                if (log && log->GetVerbose())
                      log->Printf("Successfully created new thread notification breakpoint at \"%s\".", bp_names[i]);
                 m_thread_observation_bps.push_back(breakpoint->GetID());
                 breakpoint->SetCallback (ProcessGDBRemote::NewThreadNotifyBreakpointHit, this, true);
@@ -2573,7 +2573,7 @@
 ProcessGDBRemote::StopNoticingNewThreads()
 {   
     LogSP log (lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
-    if (log)
+    if (log && log->GetVerbose())
         log->Printf ("Disabling new thread notification breakpoint.");
     size_t num_bps = m_thread_observation_bps.size();
     if (num_bps != 0)
diff --git a/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp b/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp
index 2f9ee0f..7fe8cde 100644
--- a/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp
+++ b/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp
@@ -75,7 +75,7 @@
     Thread::WillResume(resume_state);
 
     int signo = GetResumeSignal();
-    lldb::LogSP log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_STEP));
+    lldb::LogSP log(lldb_private::GetLogIfAnyCategoriesSet (GDBR_LOG_THREAD));
     if (log)
         log->Printf ("Resuming thread: %4.4x with state: %s.", GetID(), StateAsCString(resume_state));