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/actions/action_test.cc b/aos/actions/action_test.cc
index 45cfd62..178b2b0 100644
--- a/aos/actions/action_test.cc
+++ b/aos/actions/action_test.cc
@@ -75,7 +75,7 @@
bool RunAction(const uint32_t &) override {
while (!ShouldCancel()) {
- LOG(FATAL, "NOT CANCELED!!\n");
+ AOS_LOG(FATAL, "NOT CANCELED!!\n");
}
return true;
}