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_time.h>
12 
13 /*
14  * LOG_TAG is the local tag used for the following simplified
15  * logging macros.  You can change this preprocessor definition
16  * before using the other macros to change the tag.
17  */
18 
19 #ifndef LOG_TAG
20 #define LOG_TAG NULL
21 #endif
22 
23 #endif /*_LIBS_LOG_LOG_H*/
24