Fixing exception getting swallowed in deactivate method of the service component

This commit is contained in:
prabathabey 2015-01-19 00:53:42 +05:30
parent 83c9ae42b5
commit 07e3dc9644

View File

@ -105,7 +105,7 @@ public class MobileDeviceManagementBundleActivator implements BundleActivator, B
services */
this.removeAPIs();
} catch (Throwable e) {
log.error("Error occurred while de-activating Mobile Device Management bundle");
log.error("Error occurred while de-activating Mobile Device Management bundle", e);
}
}