I'm creating a StringBuilder with it's initial capacity to be 8192 and appending lines to fill it with a little under 6000 characters in this case.
When I write the StringBuilder.toString()
value out to the log it cuts off the last 1/4 or so of the whole String. This isn't the first time I've noticed android doing this with strings of similarly large sizes written out to the log.
When I run the same in java on a Linux desktop machine, I've no such problem / behaviour - everything is written out.
Is there some sort of limit I don't know about? Do I have to write out everything line by line in separate calls?
Thank you.