Skip to content

Commit

Permalink
Merge pull request #180 from YoujianWu/master
Browse files Browse the repository at this point in the history
Reduce the number of tf warnings.
  • Loading branch information
YoujianWu authored Nov 17, 2024
2 parents a6ee08c + 02ea972 commit 1a0a23d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rm_gimbal_controllers/src/gimbal_base.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ void Controller::update(const ros::Time& time, const ros::Duration& period)
}
catch (tf2::TransformException& ex)
{
ROS_WARN("%s", ex.what());
ROS_WARN_THROTTLE(1, "%s\n", ex.what());
return;
}
updateChassisVel();
Expand Down

0 comments on commit 1a0a23d

Please sign in to comment.