add
This commit is contained in:
16
module/src/main/cpp/log.h
Normal file
16
module/src/main/cpp/log.h
Normal file
@@ -0,0 +1,16 @@
|
||||
//
|
||||
// Created by Perfare on 2020/7/4.
|
||||
//
|
||||
|
||||
#ifndef ZYGISK_IL2CPPDUMPER_LOG_H
|
||||
#define ZYGISK_IL2CPPDUMPER_LOG_H
|
||||
|
||||
#include <android/log.h>
|
||||
|
||||
#define LOG_TAG "Perfare"
|
||||
#define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__)
|
||||
#define LOGW(...) __android_log_print(ANDROID_LOG_WARN, LOG_TAG, __VA_ARGS__)
|
||||
#define LOGE(...) __android_log_print(ANDROID_LOG_ERROR, LOG_TAG, __VA_ARGS__)
|
||||
#define LOGI(...) __android_log_print(ANDROID_LOG_INFO, LOG_TAG, __VA_ARGS__)
|
||||
|
||||
#endif //ZYGISK_IL2CPPDUMPER_LOG_H
|
||||
Reference in New Issue
Block a user