logcat
logcat copied to clipboard
Integration with Analytics SDKs for example Firebase Analytics
Is there a way to integrate it with Analytics tools?
The api for LogcatLogger lends itself to doing so via a delegation like pattern. You'll have to basically come up with a parent CompositeLogger that then delegates the logging calls to individual loggers provided into the parent logger.
I have a basic implementation of this here (if you're curious for code).
As mentioned in issue #24 though, concurrency can be a problem.
Thanks for the answer @kaushikgopal ! #24 is fixed now.