File tree Expand file tree Collapse file tree
nav2_behavior_tree/include/nav2_behavior_tree Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments