Prefix LOG and CHECK with AOS_

This prepares us for introducing glog more widely and transitioning
things over where they make sense.

Change-Id: Ic6c208882407bc2153fe875ffc736d66f5c8ade5
diff --git a/y2018/vision/vision_status.cc b/y2018/vision/vision_status.cc
index 3d3faf5..2f358c5 100644
--- a/y2018/vision/vision_status.cc
+++ b/y2018/vision/vision_status.cc
@@ -30,9 +30,9 @@
       auto new_vision_status = vision_status_sender_.MakeMessage();
       new_vision_status->high_frame_count = status.high_frame_count();
       new_vision_status->low_frame_count = status.low_frame_count();
-      LOG_STRUCT(DEBUG, "vision", *new_vision_status);
+      AOS_LOG_STRUCT(DEBUG, "vision", *new_vision_status);
       if (!new_vision_status.Send()) {
-        LOG(ERROR, "Failed to send vision information\n");
+        AOS_LOG(ERROR, "Failed to send vision information\n");
       }
     }
   }