We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5047880 commit 7f550bcCopy full SHA for 7f550bc
whole_body_controllers/src/ik_controller.cpp
@@ -311,7 +311,7 @@ auto IKController::update_system_state_values() -> controller_interface::return_
311
state_interfaces_, [joint_name](const auto & interface) { return interface.get_prefix_name() == joint_name; });
312
313
if (it == state_interfaces_.end()) {
314
- RCLCPP_ERROR(logger_, "Could not find joint {} in state interfaces", joint_name); // NOLINT
+ RCLCPP_ERROR(logger_, std::format("Could not find joint {} in state interfaces", joint_name).c_str()); // NOLINT
315
return controller_interface::return_type::ERROR;
316
}
317
system_state_values_[joint.idx_q()] = it->get_optional().value_or(std::numeric_limits<double>::quiet_NaN());
0 commit comments