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 <[email protected]> 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()); _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
