Skip to content

Commit 24ee229

Browse files
author
Aaron Roller
committed
fix: reducing frequency of duplicate warning master
1 parent 7dabe24 commit 24ee229

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/vb_util_lib/kinematics.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ class Kinematics {
290290
if (updateTime.toSec() == update_time_.toSec())
291291
{
292292
duplicate_time_cnt_++;
293-
ROS_WARN_THROTTLE(5,"Kinematics::setUpdateTime duplicated now[%f] source[%d] time_cnt[%lu] dup_time_cnt[%lu] update_cnt[%lu] new time[%f] same as previous time[%f]",
293+
ROS_WARN_THROTTLE(15,"Kinematics::setUpdateTime duplicated now[%f] source[%d] time_cnt[%lu] dup_time_cnt[%lu] update_cnt[%lu] new time[%f] same as previous time[%f]",
294294
ros::Time::now().toSec(), source, update_time_cnt_, duplicate_time_cnt_, update_cnt_, updateTime.toSec(), update_time_.toSec());
295295
}
296296
update_time_ = updateTime;

0 commit comments

Comments
 (0)