SNpn
SNpn

Reputation: 2207

Android increase log cat's log messages

I was wondering if it's possible and where would you go to increase the character limit of a single log message for LogCat. I am trying to dump some data stored locally on my android device (as a JSON string), however the string is quite large and gets cut off in log cat.

Any help would be appreciated.

Upvotes: 0

Views: 58

Answers (1)

Gabe Sechan
Gabe Sechan

Reputation: 93542

You wouldn't. Either break it into multiple lines, or write it to a file instead of the system log.

Upvotes: 1

Related Questions