Skip to content

Commit

Permalink
chore(nav2_behavior_tree): log actual wait period in bt_action_node
Browse files Browse the repository at this point in the history
Signed-off-by: Felix <felix@fzeltner.de>
  • Loading branch information
bi0ha2ard committed Mar 13, 2024
1 parent 0897da9 commit e897e66
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,9 @@ class BtActionNode : public BT::ActionNodeBase
RCLCPP_DEBUG(node_->get_logger(), "Waiting for \"%s\" action server", action_name.c_str());
if (!action_client_->wait_for_action_server(wait_for_service_timeout_)) {
RCLCPP_ERROR(
node_->get_logger(), "\"%s\" action server not available after waiting for 1 s",
action_name.c_str());
node_->get_logger(), "\"%s\" action server not available after waiting for %f s",
action_name.c_str(),
wait_for_service_timeout_.count() / 1000.0);
throw std::runtime_error(
std::string("Action server ") + action_name +
std::string(" not available"));
Expand Down

0 comments on commit e897e66

Please sign in to comment.