1 /*Special log.h file for VNDK linking modules*/
2 
3 #ifndef _LIBS_LOG_LOG_H
4 #define _LIBS_LOG_LOG_H
5 
6 #include <android/log.h>
7 #include <log/log_id.h>
8 #include <log/log_main.h>
9 #include <log/log_radio.h>
10 #include <log/log_read.h>
11 #include <log/log_safetynet.h>
12 #include <log/log_system.h>
13 #include <log/log_time.h>
14 
15 /*
16  * LOG_TAG is the local tag used for the following simplified
17  * logging macros.  You can change this preprocessor definition
18  * before using the other macros to change the tag.
19  */
20 
21 #ifndef LOG_TAG
22 #define LOG_TAG NULL
23 #endif
24 
25 #endif /*_LIBS_LOG_LOG_H*/
26