Reduce excessive AOS_LOG's
Also, increase the message rate for the log message channel.
Change-Id: Ic5608717458f972a44ea97b5c95de22b0b9663fd
diff --git a/frc971/wpilib/sensor_reader.cc b/frc971/wpilib/sensor_reader.cc
index 0d970e8..2c5e563 100644
--- a/frc971/wpilib/sensor_reader.cc
+++ b/frc971/wpilib/sensor_reader.cc
@@ -118,8 +118,9 @@
}
if (pwm_trigger_) {
- AOS_LOG(DEBUG, "PWM wakeup delta: %lld\n",
- (monotonic_now - last_monotonic_now_).count());
+ // TODO(austin): Put this in a status message.
+ VLOG(1) << "PWM wakeup delta: "
+ << (monotonic_now - last_monotonic_now_).count();
last_monotonic_now_ = monotonic_now;
monotonic_clock::time_point last_tick_timepoint = GetPWMStartTime();