Skip to content

Commit 903168a

Browse files
praseodymjricher
authored andcommitted
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.
1 parent 6216659 commit 903168a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openid-connect-server/src/main/java/org/mitre/discovery/web/DiscoveryEndpoint.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ OPTIONAL. JSON array containing a list of the JWS signing algorithms (alg values
287287
String baseUrl = config.getIssuer();
288288

289289
if (!baseUrl.endsWith("/")) {
290-
logger.warn("Configured issuer doesn't end in /, adding for discovery: " + baseUrl);
290+
logger.debug("Configured issuer doesn't end in /, adding for discovery: {}", baseUrl);
291291
baseUrl = baseUrl.concat("/");
292292
}
293293

0 commit comments

Comments
 (0)