universal7885: debugger: Use -b all

* More verbose logging
This commit is contained in:
Soo-Hwan Na 2022-04-07 16:57:09 +09:00 committed by GitHub
commit e065edd19b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -28,7 +28,7 @@ void copy_kmsg() {
writefile << readfile.rdbuf(); writefile << readfile.rdbuf();
} }
void copy_logcat() { 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() { int main() {
std::thread kmsg(copy_kmsg); std::thread kmsg(copy_kmsg);