log.h revision 3cdbdd522fbbb2611713805c72c6d741a91bcfd5
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
10/*The following files will be included once they are available*/
11/*#include <log/log_radio.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