Skip to content

Commit 083e20c

Browse files
BriceRenaudeauSteveMacenski
authored andcommitted
Reduce out-of-range log to DEBUG (#3656)
1 parent 491f546 commit 083e20c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nav2_collision_monitor/src/range.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ void Range::getData(
7878

7979
// Ignore data, if its range is out of scope of range sensor abilities
8080
if (data_->range < data_->min_range || data_->range > data_->max_range) {
81-
RCLCPP_WARN(
81+
RCLCPP_DEBUG(
8282
logger_,
8383
"[%s]: Data range %fm is out of {%f..%f} sensor span. Ignoring...",
8484
source_name_.c_str(), data_->range, data_->min_range, data_->max_range);

0 commit comments

Comments
 (0)