Skip to content

Commit 504f519

Browse files
committed
chores: improvement saml2 debug authority output
1 parent edd7f29 commit 504f519

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

backend/src/main/java/eu/zuinnote/example/springwebdemo/configuration/SecurityConfigurationSaml2.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,7 @@ SecurityFilterChain app(HttpSecurity http) throws Exception {
7979
config.getSaml2()
8080
.getSamlRoleAttributeSeparator());
8181
for (String authorityString : attributeValueArray) {
82-
log.debug(
83-
String.format(
84-
"Adding authority: %s",
85-
authorityString));
82+
log.debug("Adding authority: {}", authorityString);
8683
authorities.add(authorityString);
8784
}
8885
}

0 commit comments

Comments
 (0)