chore(lsposed): include vpnhide-zygisk tag in diagnostics logcat capture

The Diagnostics → Export debug bundle ran logcat with -s filtering
on VPNHideTest, VpnHide, and VpnHide-Dashboard tags only. zygisk
writes under `vpnhide-zygisk` (zygisk/src/lib.rs LOG_TAG), so the
zip the user ends up sharing was missing every native-side hook
trace — exactly the half that's hardest to reproduce locally.
This commit is contained in:
okhsunrog 2026-04-26 15:47:57 +03:00
parent 3c2ea4c1ff
commit 91204f596a

View file

@ -1147,6 +1147,12 @@ private suspend fun exportDebugZip(
"VPNHideTest:*",
"VpnHide:*",
"VpnHide-Dashboard:*",
// zygisk's android_logger uses this tag (see
// zygisk/src/lib.rs:LOG_TAG); without it the
// exported zip is missing all native-side
// hook logs, which is the half users most
// need to debug.
"vpnhide-zygisk:*",
),
)
val output = proc.inputStream.bufferedReader().readText()