Add a LOG at init time to help with debugging

Change-Id: I43d96838a26d30e12f0b65b60cd7bed2c4b3f409
diff --git a/aos/linux_code/init.cc b/aos/linux_code/init.cc
index 09b11a2..1136d4d 100644
--- a/aos/linux_code/init.cc
+++ b/aos/linux_code/init.cc
@@ -99,12 +99,14 @@
   InitStart();
   aos_core_create_shared_mem(false, false);
   logging::RegisterQueueImplementation();
+  LOG(INFO, "%s initialized non-realtime\n", program_invocation_short_name);
 }
 
 void InitCreate() {
   InitStart();
   aos_core_create_shared_mem(true, false);
   logging::RegisterQueueImplementation();
+  LOG(INFO, "%s created shm\n", program_invocation_short_name);
 }
 
 void Init(int relative_priority) {
@@ -134,6 +136,7 @@
   InitStart();
   aos_core_create_shared_mem(false, realtime);
   logging::RegisterQueueImplementation();
+  LOG(INFO, "%s initialized realtime\n", program_invocation_short_name);
 }
 
 void Cleanup() {