diff --git a/src/DebugServer/Gdb/AvrGdb/CommandPackets/FlashDone.cpp b/src/DebugServer/Gdb/AvrGdb/CommandPackets/FlashDone.cpp index a2175650..6f0313b2 100644 --- a/src/DebugServer/Gdb/AvrGdb/CommandPackets/FlashDone.cpp +++ b/src/DebugServer/Gdb/AvrGdb/CommandPackets/FlashDone.cpp @@ -43,9 +43,9 @@ namespace Bloom::DebugServer::Gdb::AvrGdb::CommandPackets Logger::warning("Program memory updated"); targetControllerConsole.disableProgrammingMode(); - Logger::info("Resetting target"); + Logger::warning("Resetting target"); targetControllerConsole.resetTarget(); - Logger::warning("Target reset complete"); + Logger::info("Target reset complete"); debugSession.connection.writePacket(OkResponsePacket()); diff --git a/src/DebugServer/Gdb/CommandPackets/ResetTarget.cpp b/src/DebugServer/Gdb/CommandPackets/ResetTarget.cpp index bf987551..eb4ce692 100644 --- a/src/DebugServer/Gdb/CommandPackets/ResetTarget.cpp +++ b/src/DebugServer/Gdb/CommandPackets/ResetTarget.cpp @@ -23,7 +23,9 @@ namespace Bloom::DebugServer::Gdb::CommandPackets Logger::debug("Handling ResetTarget packet"); try { + Logger::warning("Resetting target"); targetControllerConsole.resetTarget(); + Logger::info("Target reset complete"); debugSession.connection.writePacket(ResponsePacket(Packet::toHex( "Target reset complete - use the 'continue' command to begin execution.\n" diff --git a/src/Insight/InsightWorker/Tasks/InsightWorkerTask.cpp b/src/Insight/InsightWorker/Tasks/InsightWorkerTask.cpp index e292c31a..721cba89 100644 --- a/src/Insight/InsightWorker/Tasks/InsightWorkerTask.cpp +++ b/src/Insight/InsightWorker/Tasks/InsightWorkerTask.cpp @@ -16,7 +16,7 @@ namespace Bloom } catch (std::exception& exception) { this->state = InsightWorkerTaskState::FAILED; - Logger::error("InsightWorker task failed - " + std::string(exception.what())); + Logger::debug("InsightWorker task failed - " + std::string(exception.what())); emit this->failed(QString::fromStdString(exception.what())); }