From ddbe9ccfb76eb35ee040aedc42d9b0f606cb91f9 Mon Sep 17 00:00:00 2001 From: Alexander Bakker Date: Fri, 1 Jan 2021 12:57:20 +0100 Subject: [PATCH] Fix ADB command in CONTRIBUTING.md --- CONTRIBUTING.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5bad30c8..a52d4300 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -96,7 +96,7 @@ __On your PC__: ``` adb logcat -c - adb logcat -f debug.log + adb logcat > debug.log ``` The logcat command captures the full system log by default, which may expose @@ -106,8 +106,9 @@ __On your PC__: one below: ```sh - adb logcat --pid=$(adb shell pidof -s com.beemdevelopment.aegis) -f debug.log + adb logcat --pid=$(adb shell pidof -s com.beemdevelopment.aegis) > debug.log ``` + _If you are using a debug APK, replace ``com.beemdevelopment.aegis`` with ``com.beemdevelopment.aegis.debug``._