docs(debugging): Show how to use the debug logger

This commit is contained in:
TheJeterLP 2022-07-07 18:58:09 +02:00 committed by GitHub
parent 1f29541aa7
commit 7f64a8bcab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -1 +1,9 @@
# ReVanced Integrations
# How to use debugging:
- Include the enable-debugging patch
- Set ```DEBUG_BOOLEAN("revanced_debug_enabled", false),``` to ```true```
- Usage on Windows: ```adb logcat | findstr "ReVanced" > log.txt```
- Usage on Linux: ```adb logcat | grep --line-buffered "ReVanced" > log.txt```
This will write the log to a file called log.txt which you can view then.