From b43ab843a4a6535d609e37488a842a5a2aafe7a7 Mon Sep 17 00:00:00 2001 From: Fumiya Watanabe Date: Wed, 29 May 2024 18:43:17 +0900 Subject: [PATCH] fix: use format string Signed-off-by: Fumiya Watanabe --- .../velocity_planning_utils.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/planning/motion_velocity_smoother/src/smoother/analytical_jerk_constrained_smoother/velocity_planning_utils.cpp b/planning/motion_velocity_smoother/src/smoother/analytical_jerk_constrained_smoother/velocity_planning_utils.cpp index 3d1ae5c63e956..9d0ce817a31bb 100644 --- a/planning/motion_velocity_smoother/src/smoother/analytical_jerk_constrained_smoother/velocity_planning_utils.cpp +++ b/planning/motion_velocity_smoother/src/smoother/analytical_jerk_constrained_smoother/velocity_planning_utils.cpp @@ -201,11 +201,8 @@ bool calcStopVelocityWithConstantJerkAccLimit( // for debug RCLCPP_DEBUG(rclcpp::get_logger("velocity_planning_utils"), "Calculate stop velocity."); for (unsigned int i = 0; i < ts.size(); ++i) { - RCLCPP_DEBUG_STREAM( - rclcpp::get_logger("velocity_planning_utils"), "--- " - << "t: " << ts.at(i) << ", x: " << xs.at(i) - << ", v: " << vs.at(i) << ", a: " << as.at(i) - << ", j: " << js.at(i)); + RCLCPP_DEBUG( + rclcpp::get_logger("velocity_planning_utils"), "--- t: %f, x: %f, v: %f, a: %f, j: %f", ts.at(i), xs.at(i), vs.at(i), as.at(i), js.at(i)); } const double a_target = 0.0;