Decrease asset writer progress log period (#1044)
With two 20 Hz lidars and a 200 Hz IMU, the progress reports were outputted every 500 seconds, which is really too sparse to be useful. Decrease this by a factor of 10.master
parent
1e5b180e93
commit
530acb5984
|
@ -251,7 +251,7 @@ void AssetsWriter::Run(const std::string& configuration_directory,
|
||||||
delayed_messages.pop_front();
|
delayed_messages.pop_front();
|
||||||
}
|
}
|
||||||
delayed_messages.push_back(message);
|
delayed_messages.push_back(message);
|
||||||
LOG_EVERY_N(INFO, 100000)
|
LOG_EVERY_N(INFO, 10000)
|
||||||
<< "Processed " << (message.getTime() - begin_time).toSec()
|
<< "Processed " << (message.getTime() - begin_time).toSec()
|
||||||
<< " of " << duration_in_seconds << " bag time seconds...";
|
<< " of " << duration_in_seconds << " bag time seconds...";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue