I use Android libraries that have logging statements like the below that I'd like to monitor.
import android.util.Log;
...
Log.d(...);
Log.e(...);
When I'm in development, I view logs with logcat. Then I publish to the app to the store, and users download and use it. How do I collect all their logs? Is there a library I can install that takes all Log.*
s from my app and sends it to a service like Logstash, Loggly, Logz, etc?