Skip to content

Commit

Permalink
Stringify aggregation log content
Browse files Browse the repository at this point in the history
  • Loading branch information
phavekes committed Nov 7, 2023
1 parent 692dcce commit 6f83820
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ public ResponseEntity<List<UserAttribute>> aggregate(@RequestParam("sp_entity_id
userAttributes.add(new UserAttribute("urn:mace:eduid.nl:1.1", eduID));
});

LOG.debug(String.format("Attribute aggregation response %s", userAttributes));
LOG.debug(String.format("Attribute aggregation response %s", userAttributes.stream().map(Object::toString)
.collect(Collectors.joining(", "))));

return ResponseEntity.ok(userAttributes);
}
Expand Down

0 comments on commit 6f83820

Please sign in to comment.