Skip to content

Commit 2c1587e

Browse files
author
Guillaume Doisy
committed
RCLCPP_INFO to RCLCPP_DEBUG
1 parent 332304b commit 2c1587e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

nav2_behavior_tree/include/nav2_behavior_tree/bt_action_node.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class BtActionNode : public BT::ActionNodeBase
6464
createActionClient(action_name_);
6565

6666
// Give the derive class a chance to do any initialization
67-
RCLCPP_INFO(node_->get_logger(), "\"%s\" BtActionNode initialized", xml_tag_name.c_str());
67+
RCLCPP_DEBUG(node_->get_logger(), "\"%s\" BtActionNode initialized", xml_tag_name.c_str());
6868
}
6969

7070
BtActionNode() = delete;
@@ -83,7 +83,7 @@ class BtActionNode : public BT::ActionNodeBase
8383
action_client_ = rclcpp_action::create_client<ActionT>(node_, action_name);
8484

8585
// Make sure the server is actually there before continuing
86-
RCLCPP_INFO(node_->get_logger(), "Waiting for \"%s\" action server", action_name.c_str());
86+
RCLCPP_DEBUG(node_->get_logger(), "Waiting for \"%s\" action server", action_name.c_str());
8787
action_client_->wait_for_action_server();
8888
}
8989

0 commit comments

Comments
 (0)