我在哪里可以找到 Slog.w 生成的日志
where can I find the log produced by Slog.w
我正在阅读android源代码,其中有很多地方使用Slog.w,例如
Slog.w(TAG, "Activity is launching as a new task, so cancelling activity result.");
问题是在哪里可以找到输出日志
您可以使用:
adb logcat -b system
通过这样做,您将看到来自 'system' 缓冲区的日志。
我正在阅读android源代码,其中有很多地方使用Slog.w,例如
Slog.w(TAG, "Activity is launching as a new task, so cancelling activity result.");
问题是在哪里可以找到输出日志
您可以使用:
adb logcat -b system
通过这样做,您将看到来自 'system' 缓冲区的日志。