Commit 318f883a by chamberone

feat: add logs

1 parent cdde74fd
...@@ -161,7 +161,9 @@ public class UserService { ...@@ -161,7 +161,9 @@ public class UserService {
if (CollectionUtils.isNotEmpty(allOrgs)) { if (CollectionUtils.isNotEmpty(allOrgs)) {
log.info("allOrgs2: {}", allOrgs.size()); log.info("allOrgs2: {}", allOrgs.size());
try { try {
allOrgs.stream().forEach(o -> o.setIsActive(true)); for (OrganizationDTO organizationDTO : allOrgs) {
log.info("allOrgs31: {}", organizationDTO);
}
log.info("allOrgs3: {}", allOrgs.get(0)); log.info("allOrgs3: {}", allOrgs.get(0));
log.info("allOrgs4: {}", allOrgs.get(0).getIsActive()); log.info("allOrgs4: {}", allOrgs.get(0).getIsActive());
allOrgs.get(0).setIsActive(true); 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!