diff options
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.cpp index 1fdb688b0ca..378cac6f6ea 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.cpp @@ -123,10 +123,10 @@ GDBRemoteCommunicationReplayServer::GetPacketAndSendResponse( if (entry.type == GDBRemoteCommunicationHistory::ePacketTypeSend) { if (unexpected(entry.packet.data, packet.GetStringRef())) { LLDB_LOG(log, - "GDBRemoteCommunicationReplayServer expected packet: '{}'\n", + "GDBRemoteCommunicationReplayServer expected packet: '{0}'", entry.packet.data); LLDB_LOG(log, - "GDBRemoteCommunicationReplayServer actual packet: '{}'\n", + "GDBRemoteCommunicationReplayServer actual packet: '{0}'", packet.GetStringRef()); } @@ -143,7 +143,7 @@ GDBRemoteCommunicationReplayServer::GetPacketAndSendResponse( if (entry.type == GDBRemoteCommunicationHistory::ePacketTypeInvalid) { LLDB_LOG( log, - "GDBRemoteCommunicationReplayServer skipped invalid packet: '{}'\n", + "GDBRemoteCommunicationReplayServer skipped invalid packet: '{0}'", packet.GetStringRef()); continue; } |