1 #ifndef LOCATION_LBS_CONTEXTHUB_NANOAPPS_UTIL_NANO_LOG_H_ 2 #define LOCATION_LBS_CONTEXTHUB_NANOAPPS_UTIL_NANO_LOG_H_ 3 4 #ifdef GOOGLE3 5 #include <stdio.h> 6 7 // ignore log level argument 8 #define LOG_FUNC(level, ...) printf(__VA_ARGS__) 9 #endif 10 11 #include "third_party/contexthub/nanoapps/util/log/log.h" 12 13 #endif // LOCATION_LBS_CONTEXTHUB_NANOAPPS_UTIL_NANO_LOG_H_ 14