Skip to content

Commit

Permalink
remove previously added logging for group inserts
Browse files Browse the repository at this point in the history
  • Loading branch information
peterhoepfl committed Feb 21, 2024
1 parent 7576370 commit d2c4de8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -329,8 +329,6 @@ public int upsertAllGroups(int startIndex, int maxResults) {

QueryDefFactory factory = getCurrentQueryDefFactory();

logger.info("Inserting group {}", entity.getId());

factory
.queryById("create_or_update_group")
.on("id", entity.getId())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -479,8 +479,6 @@ public MappableCursor<MembershipEntity> getMemberships() {

private GroupEntity createGroupEntity(Group group) {

logger.info("Creating group {}", group.getName());

return new GroupEntity(
group.getName(),
group.getDescription()
Expand Down

0 comments on commit d2c4de8

Please sign in to comment.