Skip to content

Commit

Permalink
updated reporting of failed trajectory loading
Browse files Browse the repository at this point in the history
  • Loading branch information
klaxalk committed Jan 15, 2024
1 parent 9920f54 commit a18c860
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/control_manager/control_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6114,9 +6114,9 @@ std::tuple<bool, std::string, bool, std::vector<std::string>, std::vector<bool>,
} else {

ss << "the active tracker '" << _tracker_names_[active_tracker_idx_] << "' does not implement the 'setTrajectoryReference()' function!";
ROS_ERROR_STREAM_THROTTLE(1.0, "[ControlManager]: failed to set the trajectory: " << ss.str());
ROS_WARN_STREAM_THROTTLE(1.0, "[ControlManager]: " << ss.str());

success = false;
success = true;
message = ss.str();
modified = false;
tracker_successes.push_back(false);
Expand Down

0 comments on commit a18c860

Please sign in to comment.