本文介绍了如何通过应用程序过滤的Android logcat的?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何过滤的Android logcat的输出的应用程序?我需要这个,因为当我附上一个设备,我找不到我想要的输出,由于来自其他进程的垃圾邮件。
How can I filter Android logcat output by application? I need this because when I attach a device, I can't find the output I want due to spam from other processes.
推荐答案
您应该使用自己的标签,看看:http://developer.android.com/reference/android/util/Log.html
You should use your own tag, look at: http://developer.android.com/reference/android/util/Log.html
等。
Log.d("AlexeysActivity","what you want to log");
,然后当你想阅读日志使用>
And then when you want to read the log use>
adb logcat -s AlexeysActivity
这是过滤掉不使用相同的标记一切。
That filters out everything that doesn't use the same tag.
这篇关于如何通过应用程序过滤的Android logcat的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!