0

I am using an open Source Library for my Android Application. However its developers did not remove all the Log statements before releasing it. This causes a lot of ruckus in LogCat.

Is there a way to turn the Log Messages from a specific Java library Off ?

Dilnoor Singh
  • 518
  • 5
  • 16
  • 2
    http://stackoverflow.com/questions/2446248/remove-all-debug-logging-calls-before-publishing-are-there-tools-to-do-this/2466662#2466662 This is a possible solution. Are you asking for this? – suresh Apr 10 '15 at 13:30

1 Answers1

0

You can Filter LogCat outputs by some specific Tag names , like (adb shell)

adb logcat -s "TAGNAME"
Don Chakkappan
  • 7,397
  • 5
  • 44
  • 59