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/aos/input/action_joystick_input.h b/aos/input/action_joystick_input.h
index 2536a8d..3057ace 100644
--- a/aos/input/action_joystick_input.h
+++ b/aos/input/action_joystick_input.h
@@ -96,7 +96,7 @@
   virtual uint32_t GetAutonomousMode() {
     autonomous_mode_fetcher_.Fetch();
     if (autonomous_mode_fetcher_.get() == nullptr) {
-      LOG(WARNING, "no auto mode values\n");
+      AOS_LOG(WARNING, "no auto mode values\n");
       return 0;
     }
     return autonomous_mode_fetcher_->mode;