Fix sign error in camera timestamp

When we finally got things working today I briefly checked the logs and
saw the localizer complaining about getting frames from the future.

Change-Id: Ida24a56633a6f4f2c10dedfe026f5c72013b9990
diff --git a/y2019/control_loops/drivetrain/localizer.h b/y2019/control_loops/drivetrain/localizer.h
index f011720..3e20a1e 100644
--- a/y2019/control_loops/drivetrain/localizer.h
+++ b/y2019/control_loops/drivetrain/localizer.h
@@ -56,7 +56,7 @@
     if (t > HybridEkf::latest_t()) {
       LOG(ERROR,
           "target observations must be older than most recent encoder/gyro "
-          "update.");
+          "update.\n");
       return;
     }