Author: Dave Lee
Date: 2022-03-10T12:02:58-08:00
New Revision: e3dfa30501c55c4c4cb10e7554b404afa400cc08

URL: 
https://github.com/llvm/llvm-project/commit/e3dfa30501c55c4c4cb10e7554b404afa400cc08
DIFF: 
https://github.com/llvm/llvm-project/commit/e3dfa30501c55c4c4cb10e7554b404afa400cc08.diff

LOG: [lldb] Remove extra space in step logging message

When seeing the extra space in the log, it wasn't clear if there was a missing
printf argument. Removing the extra space removes the potential confusion.

Added: 
    

Modified: 
    lldb/source/Target/Thread.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/source/Target/Thread.cpp b/lldb/source/Target/Thread.cpp
index 29a69aab1a232..228d1fb2ef289 100644
--- a/lldb/source/Target/Thread.cpp
+++ b/lldb/source/Target/Thread.cpp
@@ -989,7 +989,7 @@ Vote Thread::ShouldReportStop(Event *event_ptr) {
     // the last plan, regardless of whether it is private or not.
     LLDB_LOGF(log,
               "Thread::ShouldReportStop() tid = 0x%4.4" PRIx64
-              ": returning vote  for complete stack's back plan",
+              ": returning vote for complete stack's back plan",
               GetID());
     return GetPlans().GetCompletedPlan(false)->ShouldReportStop(event_ptr);
   } else {


        
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to