blob: 3aca935ffb4e9c51858ed3aebf33836057c0b121 [file] [log] [blame]
/*
* Android-compatible logging.h to avoid pulling in Google logging package.
*/
#if !defined(GLOG_LOGGING_H_)
#define GLOG_LOGGING_H_
#include "android-base/logging.h"
#define DFATAL FATAL
#define VLOG(verbose_level) LOG(VERBOSE)
namespace google {
void InitGoogleLogging(const char *argv0);
}
#endif // GLOG_LOGGING_H