문제

Where are KERN_DEBUG log levels written to in Android? If I were, for example, to call

printk(KERN_DEBUG "666 The beast lives here 666");

then where is the output written?

도움이 되었습니까?

해결책

I figured it out. In Android, output of printk can be read with

    $ adb shell cat /proc/kmsg

or, provided a prior log was written to before, then with

    $ adb shell /proc/last_kmsg

or with

    $ adb shell dmesg
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top