Skip to content

Commit

Permalink
fix(lane_change): change logger level in isVehicleStuckByObstacle (au…
Browse files Browse the repository at this point in the history
…towarefoundation#5315) (#959)

Signed-off-by: Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
Co-authored-by: Zulfaqar Azmi <93502286+zulfaqar-azmi-t4@users.noreply.github.com>
  • Loading branch information
kosuke55 and zulfaqar-azmi-t4 authored Oct 18, 2023
1 parent 5ce35df commit 18f0e10
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1731,7 +1731,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 18f0e10

Please sign in to comment.