Is there anyway to Override a Log message that's built into default implementation? Its just that in a ListView, there's this annoying Log that continuously gets called as you scroll through the ListView:
Time Tag Text
... ... ...
05-18 21:20:46.095: AbsListView(2752): unregisterIRListener() is called
05-18 21:20:46.185: AbsListView(2752): unregisterIRListener() is called
05-18 21:20:46.325: AbsListView(2752): unregisterIRListener() is called
05-18 21:20:46.405: AbsListView(2752): unregisterIRListener() is called
05-18 21:20:46.526: AbsListView(2752): unregisterIRListener() is called
05-18 21:20:46.606: AbsListView(2752): unregisterIRListener() is called
05-18 21:20:58.879: AbsListView(2752): unregisterIRListener() is called
05-18 21:20:58.989: IInputConnectionWrapper(2752): showStatusIcon on inactive InputConnection
05-18 21:20:59.209: AbsListView(2752): onDetachedFromWindow
05-18 21:20:59.209: FragmentPhotoGallery(2752): Background thread destroyed
I'm thinking that the solution would be to find the method that its called in and Override it, leaving the Log.d() call out. Does anyone have any experience on this kind of thing?