Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/PojavLauncher
Path: blob/v3_openjdk/app_pojavlauncher/src/main/jni/log.h
2128 views
1
#ifndef POJAVLAUNCHER_LOG_H
2
#define POJAVLAUNCHER_LOG_H
3
4
#include <android/log.h>
5
6
#ifndef TAG
7
#define TAG "jrelog"
8
#endif
9
10
#ifdef __cplusplus
11
extern "C" {
12
#endif
13
14
#define LOGE(...) __android_log_print(ANDROID_LOG_ERROR, TAG, __VA_ARGS__)
15
#define LOGW(...) __android_log_print(ANDROID_LOG_WARN, TAG, __VA_ARGS__)
16
#define LOGI(...) __android_log_print(ANDROID_LOG_INFO, TAG, __VA_ARGS__)
17
#define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG, TAG, __VA_ARGS__)
18
19
#ifdef __cplusplus
20
}
21
#endif
22
23
#endif
24
25
26