Skip to content

Commit e95250c

Browse files
committed
Revert "Add logging to WatchpointAlgorithm"
This reverts commit d6e1ae2.
1 parent 19f429a commit e95250c

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

lldb/source/Breakpoint/WatchpointAlgorithms.cpp

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010
#include "lldb/Breakpoint/WatchpointResource.h"
1111
#include "lldb/Target/Process.h"
1212
#include "lldb/Utility/ArchSpec.h"
13-
#include "lldb/Utility/LLDBLog.h"
14-
#include "lldb/Utility/Log.h"
1513

1614
#include <utility>
1715
#include <vector>
@@ -43,13 +41,8 @@ WatchpointAlgorithms::AtomizeWatchpointRequest(
4341
/*address_byte_size*/ arch.GetAddressByteSize());
4442
}
4543

46-
Log *log = GetLog(LLDBLog::Watchpoints);
47-
LLDB_LOGV(log, "AtomizeWatchpointRequest user request addr {0:x} size {1}",
48-
addr, size);
4944
std::vector<WatchpointResourceSP> resources;
5045
for (Region &ent : entries) {
51-
LLDB_LOGV(log, "AtomizeWatchpointRequest creating resource {0:x} size {1}",
52-
ent.addr, ent.size);
5346
WatchpointResourceSP wp_res_sp =
5447
std::make_shared<WatchpointResource>(ent.addr, ent.size, read, write);
5548
resources.push_back(wp_res_sp);

0 commit comments

Comments
 (0)