Commit df9d1d83 by chamberone

fix: add logs

1 parent 2484e2b3
...@@ -173,6 +173,7 @@ public class OrganizationServiceImpl implements OrganizationService { ...@@ -173,6 +173,7 @@ public class OrganizationServiceImpl implements OrganizationService {
@Override @Override
public List<OrganizationDTO> getAllOrganizations(String levelType, List<String> organizationIds) { public List<OrganizationDTO> getAllOrganizations(String levelType, List<String> organizationIds) {
log.info("{} {}", levelType, organizationIds);
switch (OrganizationType.valueOf(levelType)) { switch (OrganizationType.valueOf(levelType)) {
case cluster: case cluster:
List<OrgClusterEntity> clusters = orgClusterDao.findByClusterIdIn(organizationIds); List<OrgClusterEntity> clusters = orgClusterDao.findByClusterIdIn(organizationIds);
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!