0

Whenever I,m using android studio to run my app, the logcat get spammed with unrelated messages such as :

E/SMD﹕ DCD OFF

E/Watchdog﹕ !@Sync 1745

E/dalvikvm

Is there a way to prevent it to be displayed on the logcat? The logcat get properly unreadable and prevents me to see the crash report of my app properly.

This is happening while using my own device to debug ( Samsung S3 mini ).

Thanks in advance.

Virthuss
  • 3,142
  • 1
  • 21
  • 39

1 Answers1

0

Highly recommend you use filter, you can set your keyword, like if you use system.out.println() in your app, you enter this syntax as keyword, then you will get a list of all content related with this syntax.

Kun
  • 580
  • 2
  • 13