mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Adding debug logs to query-devices API
This commit is contained in:
parent
8086a54a1a
commit
647099f8a9
@ -653,11 +653,17 @@ public class DeviceManagementServiceImpl implements DeviceManagementService {
|
||||
DeviceList deviceList = new DeviceList();
|
||||
try {
|
||||
if(map.getProperties().isEmpty()){
|
||||
if (log.isDebugEnabled()) {
|
||||
log.debug("No search criteria defined when querying devices.");
|
||||
}
|
||||
return Response.status(Response.Status.BAD_REQUEST).entity("No search criteria defined.").build();
|
||||
}
|
||||
DeviceManagementProviderService dms = DeviceMgtAPIUtils.getDeviceManagementService();
|
||||
devices = dms.getDevicesBasedOnProperties(map.getProperties());
|
||||
if(devices == null || devices.isEmpty()){
|
||||
if (log.isDebugEnabled()) {
|
||||
log.debug("No Devices Found for criteria : " + map);
|
||||
}
|
||||
return Response.status(Response.Status.NOT_FOUND).entity("No device found matching query criteria.").build();
|
||||
}
|
||||
} catch (DeviceManagementException e) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user