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