In Java, is there any way to view the complete, untruncated stack trace (e.g. by increasing the number of frames recorded), or otherwise get at the bottom of a stac
You can iterate over the stack trace yourself
Throwable t =
for(StackTraceElement ste: t.getStackTrace()) {
// is it a repeat??
}
The default printStackTrace will print every level which has been recorded. Your problem is that the stack is too deep for what it put in the stack trace.
Can you try reducing your stack size?