How to watch Logs from Slog
How can I see the logs开发者_如何学C generated from Slog API. Is there any option to see the logs from system buffer.
I mean to see logs from radio buffer we use
adb logcat -b radio
And this log is generated by Android's Log class.
Where is the output of the Slog API? How can it be seen?
Use:
adb logcat -b system
This outputs logging from the 'system' buffer, as opposed to the main or radio buffer.
精彩评论