Skip to content

Commit 99f5ba2

Browse files
committed
change no solution to debug log
1 parent 983072b commit 99f5ba2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

whole_body_controllers/src/ik_controller.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ auto IKController::update_and_write_commands(const rclcpp::Time & /*time*/, cons
420420
if (!result.has_value()) {
421421
const auto err = result.error();
422422
if (err == ik_solvers::SolverError::NO_SOLUTION) {
423-
RCLCPP_WARN(logger_, "The solver could not find a solution to the current IK problem"); // NOLINT
423+
RCLCPP_DEBUG(logger_, "The solver could not find a solution to the current IK problem"); // NOLINT
424424
} else if (err == ik_solvers::SolverError::SOLVER_ERROR) {
425425
RCLCPP_WARN(logger_, "The solver experienced an error while solving the IK problem"); // NOLINT
426426
}

0 commit comments

Comments
 (0)