Is there any way to access automatically any Log in Logcat by a double click?

前端 未结 2 2138
粉色の甜心
粉色の甜心 2020-12-11 05:25

Is there any way to access automatically any Log in Logcat by a double click ?

Actually, when there is an error crashing my Android Application, I can double click o

2条回答
  •  囚心锁ツ
    2020-12-11 05:53

    If you don't mind the clutter in your log, you can easily just add a new Exception() to the log message

    Log.e("TAG", "Looky here see", new Exception());
    

提交回复
热议问题