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
  • 7,932
  • 5
  • 48
  • 86
mgt625
  • 1
  • 1

2 Answers2

2

You need to specify your display level in Android Studio.

enter image description here

WenChao
  • 3,416
  • 6
  • 28
  • 45
0

What's your log level set to?

Set it to Verbose to view all log messages

enter image description here

Isaac
  • 1,434
  • 17
  • 26