I'm writting an app and there are a lot of LOG.d()
statments to check the behavior of my code.
Now I want to write the result of all this LOG.d()
statements in an listview to see them on my device when they appear.
Is there something like an log broadcast witch I can receive in my activity or do I have to add the logic for my listview log to all the places where LOG.d()
is called again?
Or is there maybe an other way to achieve this?