Is there a way to make Throwable.printStackTrace(PrintStream s) print more lines, so that I can see beyond the final line of "... 40 more" ?
| ||||
|
feedback
|
|
You don't need to; that information should be present elsewhere in the stack trace. From the docs of
In other words, the "... x more" only appears on a chained exception, and only when the last x lines of the stack trace are already present as part of another chained exception's stack trace. | |||
|
feedback
|
|
Quick guess at a method for you.
| |||
|
feedback
|