Skip to content

Commit

Permalink
hubero_ros - NavigationRos: goal's orientation also logged in the…
Browse files Browse the repository at this point in the history
… `computePlan` method
  • Loading branch information
rayvburn committed Oct 3, 2023
1 parent e14fead commit f4c7555
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hubero_ros/src/navigation_ros.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -724,12 +724,13 @@ nav_msgs::Path NavigationRos::computePlan(
}

HUBERO_LOG(
"[%s].[NavigationRos] Computed plan with %lu poses (goal: {%2.2f, %2.2f}, "
"[%s].[NavigationRos] Computed plan with %lu poses (goal: {%2.2f, %2.2f, %2.2f}, "
"lastElem: {%2.2f, %2.2f}, secToLastElem: {%2.2f, %2.2f}\r\n",
actor_name_.c_str(),
resp.plan.poses.size(),
pose_goal_global_ref_plane.Pos().X(),
pose_goal_global_ref_plane.Pos().Y(),
pose_goal_global_ref_plane.Rot().Yaw(),
resp.plan.poses.back().pose.position.x,
resp.plan.poses.back().pose.position.y,
resp.plan.poses.end()[-2].pose.position.x,
Expand Down

0 comments on commit f4c7555

Please sign in to comment.