Skip to content

Commit

Permalink
Fix Navigate(ToPose|ThroughPoses)Navigator::goalCompleted warning log (
Browse files Browse the repository at this point in the history
…ros-navigation#4341)

Signed-off-by: Mike Wake <[email protected]>
  • Loading branch information
ewak committed Feb 16, 2025
1 parent addf0dc commit c7e8fc7
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 @@ -96,7 +96,7 @@ NavigateThroughPosesNavigator::goalCompleted(
result->error_msg.c_str());
}
} else {
RCLCPP_INFO(logger_, "NavigateThroughPosesNavigator::goalCompleted error %d:'%s'.",
RCLCPP_WARN(logger_, "NavigateThroughPosesNavigator::goalCompleted error %d:'%s'.",
result->error_code,
result->error_msg.c_str());
}
Expand Down
2 changes: 1 addition & 1 deletion nav2_bt_navigator/src/navigators/navigate_to_pose.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ NavigateToPoseNavigator::goalCompleted(
result->error_msg.c_str());
}
} else {
RCLCPP_INFO(logger_, "NavigateThroughPosesNavigator::goalCompleted error %d:%s.",
RCLCPP_WARN(logger_, "NavigateToPoseNavigator::goalCompleted error %d:%s.",
result->error_code,
result->error_msg.c_str());
}
Expand Down

0 comments on commit c7e8fc7

Please sign in to comment.