Skip to content

Commit 7f550bc

Browse files
committed
dumb
1 parent 5047880 commit 7f550bc

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
@@ -311,7 +311,7 @@ auto IKController::update_system_state_values() -> controller_interface::return_
311311
state_interfaces_, [joint_name](const auto & interface) { return interface.get_prefix_name() == joint_name; });
312312

313313
if (it == state_interfaces_.end()) {
314-
RCLCPP_ERROR(logger_, "Could not find joint {} in state interfaces", joint_name); // NOLINT
314+
RCLCPP_ERROR(logger_, std::format("Could not find joint {} in state interfaces", joint_name).c_str()); // NOLINT
315315
return controller_interface::return_type::ERROR;
316316
}
317317
system_state_values_[joint.idx_q()] = it->get_optional().value_or(std::numeric_limits<double>::quiet_NaN());

0 commit comments

Comments
 (0)