Changed GDB "Handling..." logs to INFO level

This commit is contained in:
Nav
2023-05-07 20:17:33 +01:00
parent 602e08f97a
commit 61d608989d
22 changed files with 23 additions and 23 deletions

View File

@@ -39,13 +39,13 @@ namespace Bloom::DebugServer::Gdb::CommandPackets
}
if (packetString.find("vMustReplyEmpty") == 0) {
Logger::debug("Handling vMustReplyEmpty");
Logger::info("Handling vMustReplyEmpty");
debugSession.connection.writePacket(EmptyResponsePacket());
return;
}
if (packetString.find("qAttached") == 0) {
Logger::debug("Handling qAttached");
Logger::info("Handling qAttached");
debugSession.connection.writePacket(ResponsePacket(std::vector<unsigned char>({1})));
return;
}