Skip to content
Snippets Groups Projects
Unverified Commit ed6a8de7 authored by G.Doisy's avatar G.Doisy Committed by GitHub
Browse files

[nav2_behavior_tree] Reduce bt_action_node verbose (#2279)

* RCLCPP_INFO to RCLCPP_DEBUG

* same for bt_service_node
parent 6096221d
No related branches found
No related tags found
No related merge requests found
......@@ -64,7 +64,7 @@ public:
createActionClient(action_name_);
// Give the derive class a chance to do any initialization
RCLCPP_INFO(node_->get_logger(), "\"%s\" BtActionNode initialized", xml_tag_name.c_str());
RCLCPP_DEBUG(node_->get_logger(), "\"%s\" BtActionNode initialized", xml_tag_name.c_str());
}
BtActionNode() = delete;
......@@ -83,7 +83,7 @@ public:
action_client_ = rclcpp_action::create_client<ActionT>(node_, action_name);
// Make sure the server is actually there before continuing
RCLCPP_INFO(node_->get_logger(), "Waiting for \"%s\" action server", action_name.c_str());
RCLCPP_DEBUG(node_->get_logger(), "Waiting for \"%s\" action server", action_name.c_str());
action_client_->wait_for_action_server();
}
......
......@@ -59,12 +59,12 @@ public:
request_ = std::make_shared<typename ServiceT::Request>();
// Make sure the server is actually there before continuing
RCLCPP_INFO(
RCLCPP_DEBUG(
node_->get_logger(), "Waiting for \"%s\" service",
service_name_.c_str());
service_client_->wait_for_service();
RCLCPP_INFO(
RCLCPP_DEBUG(
node_->get_logger(), "\"%s\" BtServiceNode initialized",
service_node_name_.c_str());
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment