From 5061a5a164c1e3d0006fbf746a890aafb48371bb Mon Sep 17 00:00:00 2001 From: LoveSy Date: Thu, 4 Nov 2021 23:27:29 +0800 Subject: [PATCH] [log] Catch Zygisk log (#1352) --- core/src/main/cpp/daemon/logcat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/cpp/daemon/logcat.cpp b/core/src/main/cpp/daemon/logcat.cpp index 9ae9d8da..15813d59 100644 --- a/core/src/main/cpp/daemon/logcat.cpp +++ b/core/src/main/cpp/daemon/logcat.cpp @@ -159,7 +159,7 @@ void Logcat::ProcessBuffer(struct log_msg *buf) { } if (verbose_ && (shortcut || buf->id() == log_id::LOG_ID_CRASH || entry.pid == my_pid_ || tag == "Magisk"sv || - tag.starts_with("Riru"sv) || + tag.starts_with("Riru"sv) || tag.starts_with("zygisk"sv) || tag.starts_with("LSPosed"sv))) [[unlikely]] { verbose_print_count_ += PrintLogLine(entry, verbose_file_.get()); }