Skip to content

Commit

Permalink
Add missing ID in log statement
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-allan committed Apr 2, 2020
1 parent 1003704 commit 0b1e92f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public long createGroup(
long id = nextExperimenterGroupId.getAndIncrement();
log.info(
"Would have created ExperimenterGroup id={} name={} perms={} " +
"strict={} isLdap={}", name, perms, strict, isLdap
"strict={} isLdap={}", id, name, perms, strict, isLdap
);
return id;
}
Expand Down

0 comments on commit 0b1e92f

Please sign in to comment.