From 7f64a8bcab4c64db2d219118047214587df339b4 Mon Sep 17 00:00:00 2001 From: TheJeterLP Date: Thu, 7 Jul 2022 18:58:09 +0200 Subject: [PATCH] docs(debugging): Show how to use the debug logger --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 23020dcc..89ba5544 100644 --- a/README.md +++ b/README.md @@ -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.