Android Log.w(),Log.d(),Log.i()不打印

时间:2017-01-16 02:30:11

标签: android logging

Log.i("test","why");
Log.e("test","why");
Log.d("test","why");
Log.w("test","why");

为什么不Log.iLog.d打印?

enter image description here

2 个答案:

答案 0 :(得分:2)

您需要在Android Studio中指定显示级别。

enter image description here

答案 1 :(得分:0)

您的日志级别设置为什么?

将其设置为Verbose以查看所有日志消息

enter image description here