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
- [x] Basic Zygisk loader
- [ ] Stabilize injector
- [x] Stabilize injector
- [ ] Separate zygiskd process
- [ ] Handle 64 bit only devices
- [ ] DenyList
## Running on Magisk

View File

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