summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/registry
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/source/deployment/registry')
-rw-r--r--desktop/source/deployment/registry/component/dp_component.cxx9
1 files changed, 2 insertions, 7 deletions
diff --git a/desktop/source/deployment/registry/component/dp_component.cxx b/desktop/source/deployment/registry/component/dp_component.cxx
index 243f48a72f02..7a02fb191b69 100644
--- a/desktop/source/deployment/registry/component/dp_component.cxx
+++ b/desktop/source/deployment/registry/component/dp_component.cxx
@@ -1202,9 +1202,7 @@ void BackendImpl::ComponentPackageImpl::componentLiveInsertion(
try {
set->insert(css::uno::Any(*factory++));
} catch (const container::ElementExistException &) {
- OSL_TRACE(
- "implementation %s already registered",
- OUStringToOString(*i, RTL_TEXTENCODING_UTF8).getStr());
+ SAL_WARN("desktop", "implementation already registered " << *i);
}
}
if (!data.singletons.empty()) {
@@ -1226,10 +1224,7 @@ void BackendImpl::ComponentPackageImpl::componentLiveInsertion(
try {
cont->insertByName(name, css::uno::Any());
} catch (const container::ElementExistException &) {
- OSL_TRACE(
- "singleton %s already registered",
- OUStringToOString(
- i->first, RTL_TEXTENCODING_UTF8).getStr());
+ SAL_WARN("desktop", "singleton already registered " << i->first);
cont->replaceByName(name, css::uno::Any());
}
}