Skip to content

Commit

Permalink
Reduce out-of-range log to DEBUG (ros-navigation#3656)
Browse files Browse the repository at this point in the history
Signed-off-by: enricosutera <enricosutera@outlook.com>
  • Loading branch information
BriceRenaudeau authored and enricosutera committed May 19, 2024
1 parent 6bace0c commit 763c26d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nav2_collision_monitor/src/range.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ void Range::getData(

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

0 comments on commit 763c26d

Please sign in to comment.