[Lldb-commits] [lldb] [lldb-dap][NFC] Add new line to attach message (PR #180510)
Ebuka Ezike via lldb-commits
lldb-commits at lists.llvm.org
Mon Feb 9 04:06:56 PST 2026
https://github.com/da-viper created https://github.com/llvm/llvm-project/pull/180510
None
>From ba6fb5e11f7d90f55188e401f2473ca858655901 Mon Sep 17 00:00:00 2001
From: Ebuka Ezike <yerimyah1 at gmail.com>
Date: Mon, 9 Feb 2026 12:05:30 +0000
Subject: [PATCH] [lldb-dap][NFC] Add new line to attach message
---
lldb/tools/lldb-dap/Handler/AttachRequestHandler.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lldb/tools/lldb-dap/Handler/AttachRequestHandler.cpp b/lldb/tools/lldb-dap/Handler/AttachRequestHandler.cpp
index 41e0551373aa7..4b6f5eff7c842 100644
--- a/lldb/tools/lldb-dap/Handler/AttachRequestHandler.cpp
+++ b/lldb/tools/lldb-dap/Handler/AttachRequestHandler.cpp
@@ -84,7 +84,7 @@ Error AttachRequestHandler::Run(const AttachRequestArguments &args) const {
args.gdbRemotePort == LLDB_DAP_INVALID_PORT) &&
args.waitFor)
dap.SendOutput(OutputType::Console,
- llvm::formatv("Waiting to attach to \"{0}\"...",
+ llvm::formatv("Waiting to attach to \"{0}\"...\n",
dap.target.GetExecutable().GetFilename())
.str());
More information about the lldb-commits
mailing list