aboutsummaryrefslogtreecommitdiff
path: root/shims/logging.cpp
blob: d2197c05a0c85acd4f0d692d7096d12a944c49d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <android-base/logging.h>

extern "C" void _ZN7android4base10LogMessageC1EPKcjNS0_5LogIdENS0_11LogSeverityES3_i(
        const char* file, unsigned int line, android::base::LogId id,
        android::base::LogSeverity severity, const char* tag, int error);

extern "C" void _ZN7android4base10LogMessageC1EPKcjNS0_5LogIdENS0_11LogSeverityEi(
        const char* file, unsigned int line, android::base::LogId id,
        android::base::LogSeverity severity, int error) {
    _ZN7android4base10LogMessageC1EPKcjNS0_5LogIdENS0_11LogSeverityES3_i(file,
            line, id, severity, nullptr, error);
}