Skip to content

Commit 5b538e2

Browse files
Remove noisy controller log message
It does not provide a lot of value, but is printed every time the controllers are queried.
1 parent cb16b50 commit 5b538e2

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

ur_controllers/src/gpio_controller.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ controller_interface::CallbackReturn GPIOController::on_init()
4848
// Create the parameter listener and get the parameters
4949
param_listener_ = std::make_shared<gpio_controller::ParamListener>(get_node());
5050
params_ = param_listener_->get_params();
51-
5251
} catch (const std::exception& e) {
5352
fprintf(stderr, "Exception thrown during init stage with message: %s \n", e.what());
5453
return CallbackReturn::ERROR;
@@ -63,7 +62,6 @@ controller_interface::InterfaceConfiguration GPIOController::command_interface_c
6362
config.type = controller_interface::interface_configuration_type::INDIVIDUAL;
6463

6564
const std::string tf_prefix = params_.tf_prefix;
66-
RCLCPP_INFO(get_node()->get_logger(), "Configure UR gpio controller with tf_prefix: %s", tf_prefix.c_str());
6765

6866
for (size_t i = 0; i < 18; ++i) {
6967
config.names.emplace_back(tf_prefix + "gpio/standard_digital_output_cmd_" + std::to_string(i));

0 commit comments

Comments
 (0)