[Lldb-commits] [lldb] [lldb] Remove an extraneous `printf` statement. (PR #130453)
John Harrison via lldb-commits
lldb-commits at lists.llvm.org
Sat Mar 8 18:52:45 PST 2025
https://github.com/ashgti created https://github.com/llvm/llvm-project/pull/130453
This was missed in review but is showing up in lldb-dap output.
>From 317ab3778f56f7d32c6f3687981b5b87a8392915 Mon Sep 17 00:00:00 2001
From: John Harrison <harjohn at google.com>
Date: Sat, 8 Mar 2025 18:50:30 -0800
Subject: [PATCH] [lldb] Remove an extraneous `printf` statement.
This was missed in review but is showing up in lldb-dap output.
---
lldb/source/Host/macosx/objcxx/MemoryMonitorMacOSX.mm | 1 -
1 file changed, 1 deletion(-)
diff --git a/lldb/source/Host/macosx/objcxx/MemoryMonitorMacOSX.mm b/lldb/source/Host/macosx/objcxx/MemoryMonitorMacOSX.mm
index cb6c2457df1e3..c3a430bda7fa5 100644
--- a/lldb/source/Host/macosx/objcxx/MemoryMonitorMacOSX.mm
+++ b/lldb/source/Host/macosx/objcxx/MemoryMonitorMacOSX.mm
@@ -32,7 +32,6 @@ void Start() override {
}
});
dispatch_activate(m_memory_pressure_source);
- printf("Started\n");
}
void Stop() override {
More information about the lldb-commits
mailing list