KEYCLOAK-11740:

Fix debug message that does not properly handle single quotes
according to java.text.MessageFormat, which in turn causes the
replacement to not be handled.

Signed-off-by: Phil Brown <brownp@stellarscience.com>
This commit is contained in:
Phil Brown 2019-10-16 15:21:35 -06:00 committed by Stian Thorgersen
parent 31ed01a6de
commit 85ead8b38a

View file

@ -139,7 +139,7 @@ public class AuthenticatedActionsHandler {
facade.getResponse().setHeader(CorsHeaders.ACCESS_CONTROL_EXPOSE_HEADERS, exposeHeaders);
}
} else {
log.debugv("cors validation not needed as we're not a secure session or origin header was null: {0}", facade.getRequest().getURI());
log.debugv("cors validation not needed as we are not a secure session or origin header was null: {0}", facade.getRequest().getURI());
}
return false;
}