Android ==> Loggin witthout going to debug mode?
Is there any way to log within the application without being in debug mode. When i am in debug mode the开发者_如何学C application runs tooo slow.
Thanks
You have a way to show only Log.d()
msgs on Eclipse's logcat view.
Try running:
adb shell logcat
to see everything.
精彩评论