Possible Duplicate:
adjusting eclipse console size
I am trying to debug an app that I have set up to run locally and it is writing all of its System.out.println()
statements to the Java Console in Eclipse.
The problem is, it's spitting out 10s of thousands of lines, and by the time the app finishes processing and shuts down, I can only see the last ~25% of sysout statements.
Am I doomed? Or is there a setting in Eclipse that lets me un-restrict the number of lines the Console keeps in memory or keeps viewable.
And, if this isn't possible, is there a way to redirect output to a file or something that can hold 40,000+ lines of output?
Thanks in advance!