Skip to content

Commit

Permalink
More descriptive log statement
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-allan committed Apr 2, 2020
1 parent ecde6cb commit 4cf17fb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main/java/com/glencoesoftware/ldaptool/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,10 @@ public Integer call() throws Exception {

List<Long> groupIds = ldapImpl.loadLdapGroups(
username, new DistinguishedName(dn));
log.info("Group IDs={}", Arrays.toString(groupIds.toArray()));
log.info(
"Would be member of Groups IDs={}",
Arrays.toString(groupIds.toArray())
);

return 0;
}
Expand Down

0 comments on commit 4cf17fb

Please sign in to comment.