mirror of
https://github.com/okhsunrog/vpnhide.git
synced 2026-04-28 06:31:27 +00:00
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:
parent
3c2ea4c1ff
commit
91204f596a
1 changed files with 6 additions and 0 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue