diff --git a/src/DebugServer/Gdb/CommandPackets/Monitor.cpp b/src/DebugServer/Gdb/CommandPackets/Monitor.cpp index 8b1683e2..334559a7 100644 --- a/src/DebugServer/Gdb/CommandPackets/Monitor.cpp +++ b/src/DebugServer/Gdb/CommandPackets/Monitor.cpp @@ -23,7 +23,7 @@ namespace Bloom::DebugServer::Gdb::CommandPackets } void Monitor::handle(DebugSession& debugSession, TargetControllerConsole& targetControllerConsole) { - Logger::error("Unknown custom GDB command (" + this->command + ") received."); + Logger::error("Unknown custom GDB command (\"" + this->command + "\") received."); debugSession.connection.writePacket(EmptyResponsePacket()); } }