Skip to content

Commit

Permalink
Remove confusing output when checking states.
Browse files Browse the repository at this point in the history
  • Loading branch information
destogl authored Jan 16, 2025
1 parent 2e42b89 commit 032c7d9
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions io_gripper_controller/src/io_gripper_controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,6 @@ void IOGripperController::handle_reconfigure_state_transition(const reconfigure_
if (!(std::abs(state_value_ - 1.0) < std::numeric_limits<double>::epsilon()))
{
check_state_ios_ = false;
RCLCPP_ERROR(get_node()->get_logger(), "value for state doesn't match %s", io.c_str());
break;
}
else
Expand All @@ -514,7 +513,6 @@ void IOGripperController::handle_reconfigure_state_transition(const reconfigure_
{
if (!(std::abs(state_value_ - 0.0) < std::numeric_limits<double>::epsilon()))
{
RCLCPP_ERROR(get_node()->get_logger(), "value doesn't match %s", io.c_str());
check_state_ios_ = false;
break;
}
Expand Down

0 comments on commit 032c7d9

Please sign in to comment.