Skip to content

Commit beea173

Browse files
committed
feat: use log4j2 formatter
1 parent f43fdff commit beea173

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ private Set<GrantedAuthority> parseClaim(String type, String claim, Object claim
154154
.map(SimpleGrantedAuthority::new)
155155
.collect(Collectors.toCollection(HashSet::new)));
156156
} else { // unknown type of claim cannot be processed
157-
this.log.error(String.format("Claim %s in %s has an unknown type", claim, type));
157+
this.log.error("Claim {} in {} has an unknown type", claim, type);
158158
}
159159
}
160160
return result;

0 commit comments

Comments
 (0)