From e065edd19bc4f1c3241b49dbbcf6b0014c280743 Mon Sep 17 00:00:00 2001 From: Soo-Hwan Na <69458352+roynatech2544@users.noreply.github.com> Date: Thu, 7 Apr 2022 16:57:09 +0900 Subject: [PATCH] universal7885: debugger: Use -b all * More verbose logging --- universal7885-common/debug/Logger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/universal7885-common/debug/Logger.cpp b/universal7885-common/debug/Logger.cpp index 4ea7e25..8fa588e 100644 --- a/universal7885-common/debug/Logger.cpp +++ b/universal7885-common/debug/Logger.cpp @@ -28,7 +28,7 @@ void copy_kmsg() { writefile << readfile.rdbuf(); } void copy_logcat() { - system("/system/bin/logcat -f /data/debug/logcat.txt"); + system("/system/bin/logcat -b all -f /data/debug/logcat.txt"); } int main() { std::thread kmsg(copy_kmsg);