We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cda965 commit de00c17Copy full SHA for de00c17
hardware_interface/src/resource_manager.cpp
@@ -693,6 +693,15 @@ class ResourceStorage
693
if (hw_info.soft_limits.find(joint_name) != hw_info.soft_limits.end())
694
{
695
soft_limits = {hw_info.soft_limits.at(joint_name)};
696
+ RCLCPP_INFO(
697
+ get_logger(), "Using SoftJointLimiter for joint '%s' in hardware '%s' : '%s'",
698
+ joint_name.c_str(), hw_info.name.c_str(), soft_limits[0].to_string().c_str());
699
+ }
700
+ else
701
+ {
702
703
+ get_logger(), "Using JointLimiter for joint '%s' in hardware '%s' : '%s'",
704
+ joint_name.c_str(), hw_info.name.c_str(), limits.to_string().c_str());
705
}
706
std::unique_ptr<
707
joint_limits::JointLimiterInterface<joint_limits::JointControlInterfacesData>>
0 commit comments