views:

29

answers:

1

Is there any way to log within the application without being in debug mode. When i am in debug mode the application runs tooo slow.

Thanks

A: 

You have a way to show only Log.d() msgs on Eclipse's logcat view. Try running:

adb shell logcat

to see everything.

Macarse