0%

使用adb命令获取指定应用的日志

1
2
3
4
5
6
7
8
# 查找当前位于前台的应用包名(Windows)
adb shell dumpsys window | findstr mCurrentFocus

# 查找 pid(使用上一步查到的包名)
adb shell pidof com.CompanyName.AvaloniaTest

# 显示日志(使用上一步查到的 pid)
adb logcat --pid=202020