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:
parent
31ed01a6de
commit
85ead8b38a
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue