Change log tag

This commit is contained in:
Nullptr
2023-02-02 14:56:28 +08:00
parent d720ed910a
commit 94b56e1b2f
2 changed files with 7 additions and 2 deletions

View File

@@ -5,9 +5,10 @@ Zygisk loader for KernelSU, which allows Zygisk modules to run without Magisk en
## Development road map ## Development road map
- [x] Basic Zygisk loader - [x] Basic Zygisk loader
- [ ] Stabilize injector - [x] Stabilize injector
- [ ] Separate zygiskd process - [ ] Separate zygiskd process
- [ ] Handle 64 bit only devices - [ ] Handle 64 bit only devices
- [ ] DenyList
## Running on Magisk ## Running on Magisk

View File

@@ -5,7 +5,11 @@
#include <string.h> #include <string.h>
#ifndef LOG_TAG #ifndef LOG_TAG
#define LOG_TAG "zygisksu" #if defined(__LP64__)
# define LOG_TAG "zygisksu64"
#else
# define LOG_TAG "zygisksu32"
#endif
#endif #endif
#ifdef LOG_DISABLED #ifdef LOG_DISABLED