Commit 318f883a by chamberone

feat: add logs

1 parent cdde74fd
......@@ -161,7 +161,9 @@ public class UserService {
if (CollectionUtils.isNotEmpty(allOrgs)) {
log.info("allOrgs2: {}", allOrgs.size());
try {
allOrgs.stream().forEach(o -> o.setIsActive(true));
for (OrganizationDTO organizationDTO : allOrgs) {
log.info("allOrgs31: {}", organizationDTO);
}
log.info("allOrgs3: {}", allOrgs.get(0));
log.info("allOrgs4: {}", allOrgs.get(0).getIsActive());
allOrgs.get(0).setIsActive(true);
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!