Why are Log.d() and Log.v() not printing

前端 未结 10 2174
难免孤独
难免孤独 2020-12-10 10:15

I have the following test code in my Activity:

@Override
public void onStart() {
    super.onStart();
    Log.e(CLASS_NAME, \"ERROR onStart()\");
    Log.w(C         


        
10条回答
  •  难免孤独
    2020-12-10 10:55

    Accepted answer not working

    My solution:

    when your Log.d is not working then Log.wtf is work

    It's working for me, may be this is helpful to other, who find solution

提交回复
热议问题