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

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

    I've faced also to the same issue. Even following the previous answers, I didn't find the way to show logs in the Logcat.

    After many tries done on my own, here is the (other) way to get logs shown:

    Just selecting "Show only selected application" in the combobox did the job. Priorly, it was "Firebase" which was selected.

    Hopefully, you will see your logs ;-)

提交回复
热议问题