Skip to content

Commit

Permalink
fix bug: modify error message in model when there exists no thrust li…
Browse files Browse the repository at this point in the history
…nk in urdf
  • Loading branch information
sugikazu75 committed Jul 2, 2023
1 parent 5f1a6e0 commit 22d678b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aerial_robot_model/src/model/base_model/robot_model.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ namespace aerial_robot_model {
}
if(!found_thrust_link)
{
ROS_ERROR_STREAM("Can not find the link named '" << baselink_ << "' in urdf model");
ROS_ERROR_STREAM("Can not find the link named '" << thrust_link_ << "' in urdf model");
return;
}

Expand Down

0 comments on commit 22d678b

Please sign in to comment.