"Copy value" in Debugger Variables window truncates to 100 lines of text. How to see more?

Answered

Is there a property value that can be bumped?  I have also tried to create a custom renderer but that still hits this limit.  This is the same limit that is used in the View as Text pop-up.  There is a nice scroll bar in the pop-up to allow more data to be displayed if allowed.

0
3 comments

IntelliJ IDEA doesn't have any limits enforced.

I've just tried with a sample Java app creating a String variable containing 2000 lines of text (separated with \n). Copy Value and then Paste produces the complete text of 2000 lines.

Can you share a sample project to reproduce the issue? You can upload it per https://intellij-support.jetbrains.com/hc/articles/206869619 or share via GitHub.

0
Avatar
Permanently deleted user

Thank you. That is good to know.  It turns out the limit is imposed in the object I am trying to view. Sorry for the false alarm.

0

I had the same problem and ended up having to do

console.log(my_array.join("\n"))
0

Please sign in to leave a comment.