still unstupidying log interval stuff...
diff --git a/frc971/control_loops/drivetrain/drivetrain.cc b/frc971/control_loops/drivetrain/drivetrain.cc
index 7edeea7..b73c163 100644
--- a/frc971/control_loops/drivetrain/drivetrain.cc
+++ b/frc971/control_loops/drivetrain/drivetrain.cc
@@ -588,10 +588,10 @@
 
   bool bad_pos = false;
   if (position == nullptr) {
-    no_position_.WantToLog();
+    LOG_INTERVAL(no_position_);
     bad_pos = true;
   }
-  LOG_INTERVAL(no_position_);
+  no_position_.Print();
 
   double wheel = goal->steering;
   double throttle = goal->throttle;