Commit 98baa0d0 by Tuukka Kivilahti

logging into view expired thingy, so it can be traced

1 parent aa0bccf5
......@@ -61,9 +61,10 @@ public class BortalExceptionHandler extends ExceptionHandlerWrapper {
logger.debug("Found exception! handing it: {}", t.getClass().toString());
if (t instanceof ViewExpiredException) {
logger.debug("ViewExpiredException details", t);
errorpage(i, t, "/viewExpired");
}
Throwable cause = t.getCause();
for (int loop = 0; loop < 20 && cause != null; ++loop) {
logger.debug("Cause not null, but {}: {}, checking" + cause.getClass(), cause.getMessage());
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!