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 81ba006 commit bdfcf3aCopy full SHA for bdfcf3a
lldb/tools/lldb-dap/Transport.cpp
@@ -103,7 +103,7 @@ Expected<std::optional<Message>> Transport::Read() {
103
if (raw_json->length() != length)
104
return createStringError("unexpected EOF parse DAP message body");
105
106
- DAP_LOG(m_log, "<-- ({0}) {1}", m_client_name, *raw_json);
+ DAP_LOG(m_log, "--> ({0}) {1}", m_client_name, *raw_json);
107
108
return json::parse<Message>(*raw_json);
109
}
@@ -114,7 +114,7 @@ Error Transport::Write(const Message &message) {
114
115
std::string json = formatv("{0}", toJSON(message)).str();
116
117
- DAP_LOG(m_log, "--> ({0}) {1}", m_client_name, json);
+ DAP_LOG(m_log, "<-- ({0}) {1}", m_client_name, json);
118
119
std::string Output;
120
raw_string_ostream OS(Output);
0 commit comments