Skip to content

Commit 4dd5557

Browse files
BriceRenaudeauSteveMacenski
authored andcommitted
Reduce out-of-range log to DEBUG (#3656)
1 parent 7e668cd commit 4dd5557

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
@@ -79,7 +79,7 @@ void Range::getData(
7979

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

0 commit comments

Comments
 (0)