Remove unnecessary logs

pull/450/head
prathabanKavin 4 months ago
parent de1d79f27c
commit 11bca0f4ae

@ -1929,9 +1929,6 @@ public class SubscriptionManagerImpl implements SubscriptionManager {
// Retrieve owner details and device IDs for the user using the service layer // Retrieve owner details and device IDs for the user using the service layer
OwnerWithDeviceDTO ownerDetailsWithDevices = OwnerWithDeviceDTO ownerDetailsWithDevices =
deviceManagementProviderService.getOwnersWithDeviceIds(userName, applicationDTO.getDeviceTypeId()); deviceManagementProviderService.getOwnersWithDeviceIds(userName, applicationDTO.getDeviceTypeId());
log.info("line no 1932 device ids : " + ownerDetailsWithDevices.getDeviceIds());
log.info("line no 1933 device identifiers : " + ownerDetailsWithDevices.getDeviceIdentifiers());
log.info("line no 1934 device names : " + ownerDetailsWithDevices.getDeviceNames());
SubscriptionsDTO userSubscriptionDTO = new SubscriptionsDTO(); SubscriptionsDTO userSubscriptionDTO = new SubscriptionsDTO();
userSubscriptionDTO.setName(userSubscription.getName()); userSubscriptionDTO.setName(userSubscription.getName());

@ -614,9 +614,6 @@ public abstract class AbstractEnrollmentDAOImpl implements EnrollmentDAO {
} }
ownerDetails.setDeviceIds(deviceIds); ownerDetails.setDeviceIds(deviceIds);
ownerDetails.setDeviceCount(deviceCount); ownerDetails.setDeviceCount(deviceCount);
log.info("line no 617 device ids : " + ownerDetails.getDeviceIds());
log.info("line no 618 device identifiers : " + ownerDetails.getDeviceIdentifiers());
log.info("line no 619 device names : " + ownerDetails.getDeviceNames());
return ownerDetails; return ownerDetails;
} }

Loading…
Cancel
Save