Skip to content

Commit

Permalink
chore(behavior_velocity): change interpolate verbose (#304)
Browse files Browse the repository at this point in the history
Signed-off-by: tanaka3 <[email protected]>
  • Loading branch information
taikitanaka3 authored Jan 26, 2022
1 parent c0bf8a0 commit 45446dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ bool splineInterpolate(
*output = input;

if (input.points.size() <= 1) {
RCLCPP_WARN(logger, "Do not interpolate because path size is 1.");
RCLCPP_DEBUG(logger, "Do not interpolate because path size is 1.");
return false;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ bool splineInterpolate(
*output = input;

if (input.points.size() <= 1) {
RCLCPP_WARN(logger, "Do not interpolate because path size is 1.");
RCLCPP_DEBUG(logger, "Do not interpolate because path size is 1.");
return false;
}

Expand Down

0 comments on commit 45446dd

Please sign in to comment.