This commit is contained in:
Nav
2024-10-07 20:03:19 +01:00
parent 248c51acc8
commit 9e4d10ae91
21 changed files with 24 additions and 21 deletions

View File

@@ -257,7 +257,10 @@ namespace DebugToolDrivers::Protocols::RiscVDebugSpec
}
const auto& triggerDescriptor = triggerDescriptorOpt->get();
Logger::debug("Installing hardware BP at address " + Services::StringService::toHex(address) + " with index " + std::to_string(triggerDescriptor.index));
Logger::debug(
"Installing hardware BP at address " + Services::StringService::toHex(address) + " with trigger index "
+ std::to_string(triggerDescriptor.index)
);
if (triggerDescriptor.supportedTypes.contains(TriggerType::MATCH_CONTROL)) {
using TriggerModule::Registers::MatchControl;