Is there any way to automatically access any Log Logat with a double click?
Actually, when my Android application crashes, I can double-click on the line saying, for example,
at com.myapp.mypackage$Class.function(File.java:117)
And double-clicking on this line, I am automatically redirected to the corresponding line of my code.
But, when I try to create the same line in another Log, an example:
Log.e("TAG", "at com.myapp.mypackage$Class.function(File.java:117)");
Double-clicking no longer works ...
Any ideas?
source share