summaryrefslogtreecommitdiff
path: root/stoc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-12 17:13:03 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-12 17:13:03 +0200
commit117dc3c5ecb7874e1a9d2ac96f9df65b8f3d3944 (patch)
treed0a99e01a0b26d566c097f4e616bc476cff2049e /stoc
parent4f849cc13862350b71142efecfe3a5f2f2acb899 (diff)
Remove stray spaces from start of log messages
Change-Id: I0bf6945a030867b3575fcef81c0d32addb85b992
Diffstat (limited to 'stoc')
-rw-r--r--stoc/source/corereflection/crefl.cxx2
-rw-r--r--stoc/source/javavm/javavm.cxx2
-rw-r--r--stoc/source/servicemanager/servicemanager.cxx8
3 files changed, 6 insertions, 6 deletions
diff --git a/stoc/source/corereflection/crefl.cxx b/stoc/source/corereflection/crefl.cxx
index d0e9e8cc4a83..adad971a2d23 100644
--- a/stoc/source/corereflection/crefl.cxx
+++ b/stoc/source/corereflection/crefl.cxx
@@ -210,7 +210,7 @@ inline Reference< XIdlClass > IdlReflectionServiceImpl::constructClass(
return new IdlClassImpl( this, pTypeDescr->pTypeName, pTypeDescr->eTypeClass, pTypeDescr );
default:
- SAL_INFO("stoc", " corereflection type unsupported: " << pTypeDescr->pTypeName);
+ SAL_INFO("stoc", "corereflection type unsupported: " << pTypeDescr->pTypeName);
return Reference< XIdlClass >();
}
}
diff --git a/stoc/source/javavm/javavm.cxx b/stoc/source/javavm/javavm.cxx
index c81fe0cc6a30..7a1e08c27f16 100644
--- a/stoc/source/javavm/javavm.cxx
+++ b/stoc/source/javavm/javavm.cxx
@@ -500,7 +500,7 @@ void initVMConfiguration(
getINetPropsFromConfig(&jvm, xSMgr, xCtx);
}
catch(const css::uno::Exception & exception) {
- SAL_INFO("stoc", " can not get INETProps because of >" << exception.Message << "<");
+ SAL_INFO("stoc", "can not get INETProps because of >" << exception.Message << "<");
}
try {
diff --git a/stoc/source/servicemanager/servicemanager.cxx b/stoc/source/servicemanager/servicemanager.cxx
index 55c2c9b133e7..2e9c42e25215 100644
--- a/stoc/source/servicemanager/servicemanager.cxx
+++ b/stoc/source/servicemanager/servicemanager.cxx
@@ -891,7 +891,7 @@ Reference< XInterface > OServiceManager::createInstanceWithContext(
Reference< XSingleServiceFactory > xFac2( xFactory, UNO_QUERY );
if (xFac2.is())
{
- SAL_INFO("stoc", " ignoring given context raising service " << rServiceSpecifier << "!!!");
+ SAL_INFO("stoc", "ignoring given context raising service " << rServiceSpecifier << "!!!");
return xFac2->createInstance();
}
}
@@ -899,7 +899,7 @@ Reference< XInterface > OServiceManager::createInstanceWithContext(
}
catch (const lang::DisposedException & exc)
{
- SAL_INFO("stoc", " DisposedException occurred: " << exc.Message);
+ SAL_INFO("stoc", "DisposedException occurred: " << exc.Message);
}
}
@@ -946,7 +946,7 @@ Reference< XInterface > OServiceManager::createInstanceWithArgumentsAndContext(
Reference< XSingleServiceFactory > xFac2( xFactory, UNO_QUERY );
if (xFac2.is())
{
- SAL_INFO("stoc", " ignoring given context raising service " << rServiceSpecifier << "!!!");
+ SAL_INFO("stoc", "ignoring given context raising service " << rServiceSpecifier << "!!!");
return xFac2->createInstanceWithArguments( rArguments );
}
}
@@ -954,7 +954,7 @@ Reference< XInterface > OServiceManager::createInstanceWithArgumentsAndContext(
}
catch (const lang::DisposedException & exc)
{
- SAL_INFO("stoc", " DisposedException occurred: " << exc.Message);
+ SAL_INFO("stoc", "DisposedException occurred: " << exc.Message);
}
}