Decrease log level of trailing slash warning
Having an issuer without trailing slash configured is just fine, so there is no reason to log a warning for this every time the discovery endpoint is called.pull/972/merge
parent
6216659cd6
commit
903168a949
|
@ -287,7 +287,7 @@ public class DiscoveryEndpoint {
|
||||||
String baseUrl = config.getIssuer();
|
String baseUrl = config.getIssuer();
|
||||||
|
|
||||||
if (!baseUrl.endsWith("/")) {
|
if (!baseUrl.endsWith("/")) {
|
||||||
logger.warn("Configured issuer doesn't end in /, adding for discovery: " + baseUrl);
|
logger.debug("Configured issuer doesn't end in /, adding for discovery: {}", baseUrl);
|
||||||
baseUrl = baseUrl.concat("/");
|
baseUrl = baseUrl.concat("/");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue