I am trying to display long message on logcat. If the length of message is more than 1000 characters, it gets broken.
What is the mechanism to show all characters o
I consider Timber a good option for this issue. Timber automatically split and print chunks of message in logcat.
https://github.com/JakeWharton/timber
You can see log method implementation in timber.log.Timber.DebugTree static class.