Skip to content

Commit

Permalink
Remove extraneous error message from URDF service (#2736)
Browse files Browse the repository at this point in the history
  • Loading branch information
EzraBrooks authored Mar 12, 2024
1 parent dafa36f commit e65491e
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ void GetUrdfService::initialize()
const auto start = full_urdf_string.find("<joint name=\"" + joint_name + "\" type");
auto substring = full_urdf_string.substr(start, full_urdf_string.size() - start);
res->urdf_string += substring.substr(0, substring.find(JOINT_ELEMENT_CLOSING) + JOINT_ELEMENT_CLOSING.size());
RCLCPP_ERROR(getLogger(), "%s", joint_name.c_str());

// If parent link model is not part of the joint group, add it
const auto parent_link_element = subgroup->getJointModel(joint_name)->getParentLinkModel()->getName();
Expand Down

0 comments on commit e65491e

Please sign in to comment.