[Lldb-commits] [lldb] e95250c - Revert "Add logging to WatchpointAlgorithm"

Jason Molenda via lldb-commits lldb-commits at lists.llvm.org
Wed Jan 31 12:26:39 PST 2024


Author: Jason Molenda
Date: 2024-01-31T12:22:20-08:00
New Revision: e95250cda09331779d483e910ab3cfe5d655567c

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

LOG: Revert "Add logging to WatchpointAlgorithm"

This reverts commit d6e1ae248e85295704e199a67405ea2a4c7e98b2.

Added: 
    

Modified: 
    lldb/source/Breakpoint/WatchpointAlgorithms.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/source/Breakpoint/WatchpointAlgorithms.cpp b/lldb/source/Breakpoint/WatchpointAlgorithms.cpp
index 4e78bd9730521..95a978a17cbfd 100644
--- a/lldb/source/Breakpoint/WatchpointAlgorithms.cpp
+++ b/lldb/source/Breakpoint/WatchpointAlgorithms.cpp
@@ -10,8 +10,6 @@
 #include "lldb/Breakpoint/WatchpointResource.h"
 #include "lldb/Target/Process.h"
 #include "lldb/Utility/ArchSpec.h"
-#include "lldb/Utility/LLDBLog.h"
-#include "lldb/Utility/Log.h"
 
 #include <utility>
 #include <vector>
@@ -43,13 +41,8 @@ WatchpointAlgorithms::AtomizeWatchpointRequest(
                             /*address_byte_size*/ arch.GetAddressByteSize());
   }
 
-  Log *log = GetLog(LLDBLog::Watchpoints);
-  LLDB_LOGV(log, "AtomizeWatchpointRequest user request addr {0:x} size {1}",
-            addr, size);
   std::vector<WatchpointResourceSP> resources;
   for (Region &ent : entries) {
-    LLDB_LOGV(log, "AtomizeWatchpointRequest creating resource {0:x} size {1}",
-              ent.addr, ent.size);
     WatchpointResourceSP wp_res_sp =
         std::make_shared<WatchpointResource>(ent.addr, ent.size, read, write);
     resources.push_back(wp_res_sp);


        


More information about the lldb-commits mailing list