Fixing exception getting swallowed in activate method of the service component

This commit is contained in:
prabathabey 2015-01-19 01:04:35 +05:30
parent 043bfb7742
commit 74b8a32be3

View File

@ -95,7 +95,7 @@ public class MobileDeviceManagementServiceComponent {
log.debug("Mobile Device Management Service Component has been successfully activated"); log.debug("Mobile Device Management Service Component has been successfully activated");
} }
} catch (Throwable e) { } catch (Throwable e) {
log.error("Error occurred while activating Mobile Device Management Service Component"); log.error("Error occurred while activating Mobile Device Management Service Component", e);
} }
} }