Skip to content
This repository was archived by the owner on Dec 9, 2025. It is now read-only.

Commit f61170b

Browse files
committed
Fix logging
1 parent 8f94039 commit f61170b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/appirio/tech/core/service/identity/clients/MemberServiceClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public Set<RoleSubject> getMembers(List<TCID> userIds) throws Exception {
7373
Response response = target.request(MediaType.APPLICATION_JSON).header("Authorization", "Bearer " + m2mToken).get();
7474

7575
if (response.getStatusInfo().getStatusCode() != HttpStatus.OK_200) {
76-
LOGGER.error("Unable to get members: {}", response);
76+
LOGGER.error("Unable to get members: " + response.toString());
7777
throw new SupplyException("Unable to get members from the API, the returned status code is: " + response.getStatusInfo().getStatusCode());
7878
}
7979

0 commit comments

Comments
 (0)