summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-04-26 15:57:34 +0200
committerStephan Bergmann <sbergman@redhat.com>2012-04-26 16:07:11 +0200
commite613da167699c6231e6fa27ce50c422c926855f0 (patch)
tree04933625f0a67a20573a096d27b1d4b8478033ca /desktop
parent03511802da45182d3fe85aa0eb7882298c586794 (diff)
Improved error reporting
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/deployment/manager/dp_manager.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/deployment/manager/dp_manager.cxx b/desktop/source/deployment/manager/dp_manager.cxx
index ec2c40a61860..3fbe04e5a91b 100644
--- a/desktop/source/deployment/manager/dp_manager.cxx
+++ b/desktop/source/deployment/manager/dp_manager.cxx
@@ -1328,9 +1328,9 @@ bool PackageManagerImpl::synchronizeRemovedExtensions(
bModified |= true;
}
}
- catch( const uno::Exception & )
+ catch( const uno::Exception & e )
{
- OSL_ASSERT(0);
+ SAL_WARN("desktop.deployment", e.Message);
}
}
return bModified;