Skip to content

Commit 1b555ef

Browse files
author
Guillaume Doisy
committed
RCLCPP_INFO -> RCLCPP_DEBUG
1 parent d537cb1 commit 1b555ef

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

nav2_lifecycle_manager/src/lifecycle_manager_client.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,15 +74,15 @@ LifecycleManagerClient::is_active(const std::chrono::nanoseconds timeout)
7474
{
7575
auto request = std::make_shared<std_srvs::srv::Trigger::Request>();
7676

77-
RCLCPP_INFO(
77+
RCLCPP_DEBUG(
7878
node_->get_logger(), "Waiting for the %s service...",
7979
active_service_name_.c_str());
8080

8181
if (!is_active_client_->wait_for_service(timeout)) {
8282
return SystemStatus::TIMEOUT;
8383
}
8484

85-
RCLCPP_INFO(
85+
RCLCPP_DEBUG(
8686
node_->get_logger(), "Sending %s request",
8787
active_service_name_.c_str());
8888
auto future_result = is_active_client_->async_send_request(request);
@@ -106,7 +106,7 @@ LifecycleManagerClient::callService(uint8_t command, const std::chrono::nanoseco
106106
auto request = std::make_shared<ManageLifecycleNodes::Request>();
107107
request->command = command;
108108

109-
RCLCPP_INFO(
109+
RCLCPP_DEBUG(
110110
node_->get_logger(), "Waiting for the %s service...",
111111
manage_service_name_.c_str());
112112

@@ -115,10 +115,10 @@ LifecycleManagerClient::callService(uint8_t command, const std::chrono::nanoseco
115115
RCLCPP_ERROR(node_->get_logger(), "Client interrupted while waiting for service to appear");
116116
return false;
117117
}
118-
RCLCPP_INFO(node_->get_logger(), "Waiting for service to appear...");
118+
RCLCPP_DEBUG(node_->get_logger(), "Waiting for service to appear...");
119119
}
120120

121-
RCLCPP_INFO(
121+
RCLCPP_DEBUG(
122122
node_->get_logger(), "Sending %s request",
123123
manage_service_name_.c_str());
124124
auto future_result = manager_client_->async_send_request(request);

0 commit comments

Comments
 (0)