This commit is contained in:
jiqiu2021
2024-10-05 15:26:16 +08:00
commit 5408de21e5
37 changed files with 3256 additions and 0 deletions

16
module/src/main/cpp/log.h Normal file
View 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