git-svn-id: https://subversion.switch.ch/svn/shibboleth/java-idp/branches/REL_2@2906
ab3bd59b-922f-494d-bb5f-
6f0a3c29deca
+Changes in Release 2.2.0
+=============================================
+[SIDP-362] - Only log exception message without stack trace for expired SAML messages
+
+
Changes in Release 2.1.5
=============================================
[SIDP-353] - Default login.jsp crashes on anonymous RPs
log.warn(msg, e);
throw new ProfileException(msg, e);
} catch (SecurityException e) {
- String msg = "Shibboleth SSO request does not meet security requirements";
- log.warn(msg, e);
+ String msg = "Shibboleth SSO request does not meet security requirements: " + e.getMessage();
+ log.warn(msg);
throw new ProfileException("msg", e);
}