Skip to content

Commit 4e1ce8b

Browse files
committed
don't print warning on intersections
1 parent cfcda5b commit 4e1ce8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/odometry.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ namespace swerve_steering_controller
149149
{
150150
if((fabs(intersections[i][0]-intersections[i-1][0])>intersection_tol_ || fabs(intersections[i][1]-intersections[i-1][1])>intersection_tol_) && i!=0)
151151
{
152-
ROS_WARN_STREAM("intersections are not close enough to get an average, dropping!");
152+
ROS_DEBUG_STREAM("intersections are not close enough to get an average, dropping!");
153153
for (size_t i=0; i<wheels_num_; ++i)
154154
{
155155
ROS_DEBUG_STREAM("theta, omega: "<<holders_theta[i]<<" "<<wheels_omega[i]);

0 commit comments

Comments
 (0)