Skip to content

Commit

Permalink
[33] 불필요한 로그 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
ohsuha committed Oct 16, 2024
1 parent 8cc4b1d commit c500fba
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,6 @@ private Collection<GrantedAuthority> extractAuthorities(Jwt jwt) {
var roles = (Map<String, Object>)resourceAccess.get("oauth2-client-app");

if (roles != null) {
log.info(roles.toString());

var roleList = (List<String>)roles.get("roles");
return roleList.stream()
.map(role -> new SimpleGrantedAuthority(role))
Expand Down

0 comments on commit c500fba

Please sign in to comment.