summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2020-01-09 16:57:16 +0100
committerSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2020-01-10 08:26:41 +0100
commit90cab308f52468edbf87a7f06a1ef99f146f03a5 (patch)
tree24ba6d4abdcde02848e5890d141b17b933fc79b0 /desktop
parentaa499120c4cb3935cd942751859b6d5d3689ea43 (diff)
unopkg: Remove too verbose logging
This adds several lines of 'Extension x not found' when installing an extension with 'unopkg add'. Since it's expected that the extension is not yet there when installing it, remove this logging. Change-Id: Ifc2ea5fa04253a96fee60016a65505e0d1f2722c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86516 Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/deployment/manager/dp_manager.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/desktop/source/deployment/manager/dp_manager.cxx b/desktop/source/deployment/manager/dp_manager.cxx
index 78ad04945c5a..b592a77c152b 100644
--- a/desktop/source/deployment/manager/dp_manager.cxx
+++ b/desktop/source/deployment/manager/dp_manager.cxx
@@ -1066,8 +1066,7 @@ Reference<deployment::XPackage> PackageManagerImpl::getDeployedPackage(
const ::osl::MutexGuard guard( getMutex() );
return getDeployedPackage_( id, fileName, xCmdEnv );
}
- catch (const lang::IllegalArgumentException & exc) {
- logIntern( Any(exc) );
+ catch (const lang::IllegalArgumentException &) {
throw;
}
catch (const RuntimeException &) {