KERN_DEBUG在Android中写入的日志级别在哪里?例如,如果我打电话
printk(KERN_DEBUG "666 The beast lives here 666");
那么输出写在哪里呢?
我想通了。在Android中,printk的输出可以用
$ adb shell cat /proc/kmsg
或者,如果之前的日志被写入之前,则使用
$ adb shell /proc/last_kmsg
或与
$ adb shell dmesg