Skip to content

Commit

Permalink
fix(lane_change): change logger level in isVehicleStuckByObstacle
Browse files Browse the repository at this point in the history
Signed-off-by: Zulfaqar Azmi <[email protected]>
  • Loading branch information
zulfaqar-azmi-t4 committed Oct 16, 2023
1 parent 5725c2d commit c64402f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1725,7 +1725,7 @@ bool NormalLaneChange::isVehicleStuckByObstacle(const lanelet::ConstLanelets & c
constexpr double DETECTION_DISTANCE_MARGIN = 10.0;
const auto detection_distance = max_lane_change_length + rss_dist +
getCommonParam().base_link2front + DETECTION_DISTANCE_MARGIN;
RCLCPP_INFO(logger_, "max_lane_change_length: %f, max_acc: %f", max_lane_change_length, max_acc);
RCLCPP_DEBUG(logger_, "max_lane_change_length: %f, max_acc: %f", max_lane_change_length, max_acc);

return isVehicleStuckByObstacle(current_lanes, detection_distance);
}
Expand Down

0 comments on commit c64402f

Please sign in to comment.