Reputation: 361
I am sending a complicated json object including nested objects and arrays. Before sending it, I am trying to observe whether the json is well formed or not. So I've printed the json data in Android studio logcat. I am trying to copy the data and paste it in an online json viewer tool for inspecting such as: http://jsonviewer.stack.hu/
Problem is- the whole data is printed in one line, so it gets difficult to copy the whole data from there. It would be more convenient if the data would be printed in multi line. Is there any way in Android studio logcat that I can omit the horizontal scroller and see everything in multi line ?
Upvotes: 4
Views: 1926
Reputation: 2274
Press on the focussed button. It'll wrap the text to next line
Upvotes: 10