mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
DAO exceptions thrown while retrieving advance details of devices appears to have been swallowen at the REST API implementation that exposes the aforementioned functionality. This particular fix resolves it
This commit is contained in:
parent
ab5aa3e31c
commit
40b43a8b97
@ -392,7 +392,7 @@ public class DeviceManagementProviderServiceImpl implements DeviceManagementProv
|
|||||||
}
|
}
|
||||||
} catch (DeviceDetailsMgtDAOException e) {
|
} catch (DeviceDetailsMgtDAOException e) {
|
||||||
log.error("Error occurred while retrieving advance info of '" + device.getType() +
|
log.error("Error occurred while retrieving advance info of '" + device.getType() +
|
||||||
"' that carries the id '" + device.getDeviceIdentifier() + "'");
|
"' that carries the id '" + device.getDeviceIdentifier() + "'", e);
|
||||||
} catch (SQLException e) {
|
} catch (SQLException e) {
|
||||||
log.error("Error occurred while opening a connection to the data source", e);
|
log.error("Error occurred while opening a connection to the data source", e);
|
||||||
} finally {
|
} finally {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user