Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class BtActionNode : public BT::ActionNodeBase
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;
Expand All @@ -83,7 +83,7 @@ class BtActionNode : public BT::ActionNodeBase
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();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ class BtServiceNode : public BT::SyncActionNode
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());
}
Expand Down