Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(behavior_velocity): change interpolate verbose #304

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
chore(behavior_velocity): change interpolate verbose
Signed-off-by: tanaka3 <ttatcoder@outlook.jp>
  • Loading branch information
taikitanaka3 committed Jan 26, 2022
commit 3f532db6bfffaa4c06f3d87041203ea470a731cd
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