We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc716a5 commit 6fed1a0Copy full SHA for 6fed1a0
lldb/tools/lldb-dap/DAP.cpp
@@ -265,7 +265,7 @@ std::string DAP::ReadJSON() {
265
if (!input.read_full(log, length, json_str))
266
return json_str;
267
268
- DAP_LOG(log, "{0} --> {1}", client_name, json_str);
+ DAP_LOG(log, "({0}) --> {1}", client_name, json_str);
269
270
}
271
@@ -708,7 +708,7 @@ PacketStatus DAP::GetNextObject(llvm::json::Object &object) {
708
709
llvm::json::Object *object_ptr = json_value->getAsObject();
710
if (!object_ptr) {
711
- DAP_LOG(log, "error: json packet isn't a object");
+ DAP_LOG(log, "({0}) error: json packet isn't a object", client_name);
712
return PacketStatus::JSONNotObject;
713
714
object = *object_ptr;
0 commit comments