Fixed typo in error message

This commit is contained in:
Nav
2021-05-02 15:47:28 +01:00
parent 1cf5e943fd
commit 821947d610

View File

@@ -341,7 +341,7 @@ void TargetController::onResumeTargetExecutionEvent(EventPointer<Events::ResumeT
this->eventManager.triggerEvent(executionResumedEvent);
} catch (const Exception& exception) {
Logger::error("Failed to stop execution on target - " + exception.getMessage());
Logger::error("Failed to resume execution on target - " + exception.getMessage());
this->emitErrorEvent(event->id);
}
}