Skip to content

Commit

Permalink
change to info
Browse files Browse the repository at this point in the history
Signed-off-by: Tony Najjar <[email protected]>
  • Loading branch information
tonynajjar committed Jan 13, 2025
1 parent c8b6143 commit 2bf8b1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nav2_behavior_tree/plugins/decorator/goal_updater_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ inline BT::NodeStatus GoalUpdater::tick()
if (last_goal_received_time >= goal_time) {
setOutput("output_goal", last_goal_received_);
} else {
RCLCPP_WARN(
RCLCPP_INFO(
node_->get_logger(), "The timestamp of the received goal (%f) is older than the "
"current goal (%f). Ignoring the received goal.",
last_goal_received_time.seconds(), goal_time.seconds());
Expand All @@ -106,7 +106,7 @@ inline BT::NodeStatus GoalUpdater::tick()
if (last_goals_received_time >= goals_time) {
setOutput("output_goals", last_goals_received_);
} else {
RCLCPP_WARN(
RCLCPP_INFO(
node_->get_logger(), "The timestamp of the received goals (%f) is older than the "
"current goals (%f). Ignoring the received goals.",
last_goals_received_time.seconds(), goals_time.seconds());
Expand Down

0 comments on commit 2bf8b1a

Please sign in to comment.