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

前端 未结 10 2175
难免孤独
难免孤独 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:42

    I was trying everything. From log.d to log.wtf. But nothing worked.

    Then I restarted my Android Studio. After that, the debugger started working again.

    Hope this helps to someone.

提交回复
热议问题