You've already forked ReZygisk
mirror of
https://github.com/PerformanC/ReZygisk.git
synced 2025-09-06 06:37:01 +00:00
remove: logging to zygiskd.log file
This commit removes the logging made to the zygiskd.log file.
This commit is contained in:
@@ -10,13 +10,11 @@
|
|||||||
|
|
||||||
#define LOGI(...) \
|
#define LOGI(...) \
|
||||||
__android_log_print(ANDROID_LOG_INFO, lp_select("zygiskd32", "zygiskd64"), __VA_ARGS__); \
|
__android_log_print(ANDROID_LOG_INFO, lp_select("zygiskd32", "zygiskd64"), __VA_ARGS__); \
|
||||||
printf(__VA_ARGS__); \
|
printf(__VA_ARGS__);
|
||||||
FILE *CONCAT(fpl, __LINE__) = fopen("/data/local/tmp/zygiskd.log", "a"); fprintf(CONCAT(fpl, __LINE__), __VA_ARGS__); fclose(CONCAT(fpl, __LINE__))
|
|
||||||
|
|
||||||
#define LOGE(...) \
|
#define LOGE(...) \
|
||||||
__android_log_print(ANDROID_LOG_ERROR , lp_select("zygiskd32", "zygiskd64"), __VA_ARGS__); \
|
__android_log_print(ANDROID_LOG_ERROR , lp_select("zygiskd32", "zygiskd64"), __VA_ARGS__); \
|
||||||
printf(__VA_ARGS__); \
|
printf(__VA_ARGS__);
|
||||||
FILE *CONCAT(fpl, __LINE__) = fopen("/data/local/tmp/zygiskd.log", "a"); fprintf(CONCAT(fpl, __LINE__), __VA_ARGS__); fclose(CONCAT(fpl, __LINE__))
|
|
||||||
|
|
||||||
#define write_func_def(type) \
|
#define write_func_def(type) \
|
||||||
ssize_t write_## type(int fd, type val)
|
ssize_t write_## type(int fd, type val)
|
||||||
|
|||||||
Reference in New Issue
Block a user