parent
045f6a7522
commit
8f5fc98188
|
@ -66,8 +66,8 @@ class OrderedMultiQueue {
|
|||
auto* queue = FindOrNull(queue_key);
|
||||
if (queue == nullptr) {
|
||||
// TODO(damonkohler): This will not work for every value of "queue_key".
|
||||
LOG_EVERY_N(WARNING, 60) << "Ignored value for queue: '" << queue_key
|
||||
<< "'";
|
||||
LOG_EVERY_N(WARNING, 1000) << "Ignored value for queue: '" << queue_key
|
||||
<< "'";
|
||||
return;
|
||||
}
|
||||
queue->queue.Push(
|
||||
|
|
|
@ -39,8 +39,9 @@ MotionFilter::MotionFilter(const proto::MotionFilterOptions& options)
|
|||
|
||||
bool MotionFilter::IsSimilar(const common::Time time,
|
||||
const transform::Rigid3d& pose) {
|
||||
LOG_EVERY_N(INFO, 500) << "Motion filter reduced the number of scans to "
|
||||
<< 100. * num_different_ / num_total_ << "%.";
|
||||
LOG_IF_EVERY_N(INFO, num_total_ >= 500, 500)
|
||||
<< "Motion filter reduced the number of scans to "
|
||||
<< 100. * num_different_ / num_total_ << "%.";
|
||||
++num_total_;
|
||||
if (num_total_ > 1 &&
|
||||
time - last_time_ <= common::FromSeconds(options_.max_time_seconds()) &&
|
||||
|
|
Loading…
Reference in New Issue