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

Why aren't Log.i, Log.d printing?

enter image description here

Eric Cochran
  • 8,414
  • 5
  • 50
  • 91
mgt625
  • 1
  • 1

2 Answers2

2

You need to specify your display level in Android Studio.

enter image description here

WenChao
  • 3,586
  • 6
  • 32
  • 46
0

What's your log level set to?

Set it to Verbose to view all log messages

enter image description here

Isaac
  • 1,442
  • 17
  • 26