Commit cdde74fd by chamberone

fix: add logs

1 parent 0e824ef7
...@@ -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 {
log.info("allOrgs3: {}", allOrgs.get(0).getIsActive()); allOrgs.stream().forEach(o -> o.setIsActive(true));
log.info("allOrgs3: {}", allOrgs.get(0));
log.info("allOrgs4: {}", allOrgs.get(0).getIsActive());
allOrgs.get(0).setIsActive(true); allOrgs.get(0).setIsActive(true);
} catch (Throwable e) { } catch (Throwable e) {
e.printStackTrace(); e.printStackTrace();
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!