Skip to content
Snippets Groups Projects
Commit f4e7b485 authored by Matthew Hansen's avatar Matthew Hansen Committed by Matt Hansen
Browse files

Change ERROR to throttled WARN

parent 7a4d5988
No related branches found
No related tags found
No related merge requests found
......@@ -331,7 +331,12 @@ StaticLayer::updateCosts(
return;
}
if (!map_received_) {
RCLCPP_WARN(node_->get_logger(), "Can't update static costmap layer, no map received");
static int count = 0;
// throttle warning down to only 1/10 message rate
if (++count == 10) {
RCLCPP_WARN(node_->get_logger(), "Can't update static costmap layer, no map received");
count=0;
}
return;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment