log.info("It took " + time
+ "ms of CPU time to generate the response");
} catch (JWIGException e) {
log.info(e.getLogInfo());
e.setHeaders(ThreadContext.get().getServletResponse());
XML xml = e.getXml();
if (xml == null) {
return website.sendError(e.getErrorCode(), e.getMessagePage());
} else {
return website.sendError(e.getErrorCode(), xml, true);
}