summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-03-13 20:47:30 +0000
committerCaolán McNamara <caolanm@redhat.com>2016-03-13 20:51:50 +0000
commitea943b3badeaf2a68ef08d0911e95603f0b889fc (patch)
treea0371fe8cae90d35a9219221b36998151545eaa6
parenta6435dc298a7dec944eedadd46a17fa6d76e5169 (diff)
quieten debugging soffice startup
Change-Id: I3f9ef32d789b7b344cc09bbed6f344e428a31ca4
-rw-r--r--desktop/source/app/officeipcthread.cxx2
-rw-r--r--desktop/source/deployment/registry/dp_registry.cxx2
-rw-r--r--desktop/source/splash/unxsplash.cxx6
-rw-r--r--unotools/source/config/fontcfg.cxx2
4 files changed, 6 insertions, 6 deletions
diff --git a/desktop/source/app/officeipcthread.cxx b/desktop/source/app/officeipcthread.cxx
index e9ad39b30b0b..1e0211307daa 100644
--- a/desktop/source/app/officeipcthread.cxx
+++ b/desktop/source/app/officeipcthread.cxx
@@ -249,7 +249,7 @@ rtl::Reference< OfficeIPCThread > OfficeIPCThread::pGlobalOfficeIPCThread;
// Into a hex string of well known length ff132a86...
OUString CreateMD5FromString( const OUString& aMsg )
{
- SAL_WARN("desktop.app", "create md5 from '" << aMsg << "'");
+ SAL_INFO("desktop.app", "create md5 from '" << aMsg << "'");
rtlDigest handle = rtl_digest_create( rtl_Digest_AlgorithmMD5 );
if ( handle )
diff --git a/desktop/source/deployment/registry/dp_registry.cxx b/desktop/source/deployment/registry/dp_registry.cxx
index 8d203f63e372..8d02f77504dd 100644
--- a/desktop/source/deployment/registry/dp_registry.cxx
+++ b/desktop/source/deployment/registry/dp_registry.cxx
@@ -397,7 +397,7 @@ Reference<deployment::XPackageRegistry> PackageRegistryImpl::create(
buf.append( Reference<lang::XServiceInfo>(
xBackend, UNO_QUERY_THROW )
->getImplementationName() );
- dp_misc::writeConsole( buf.makeStringAndClear() + "\n");
+ dp_misc::TRACE( buf.makeStringAndClear() + "\n");
}
dp_misc::TRACE( "> [dp_registry.cxx] ambiguous backends:\n\n" );
for ( t_registryset::const_iterator iPos(
diff --git a/desktop/source/splash/unxsplash.cxx b/desktop/source/splash/unxsplash.cxx
index 4018535f81e2..7bc5f549047a 100644
--- a/desktop/source/splash/unxsplash.cxx
+++ b/desktop/source/splash/unxsplash.cxx
@@ -36,7 +36,7 @@ namespace desktop
UnxSplashScreen::~UnxSplashScreen()
{
- SAL_WARN("desktop.splash", "UnxSplashScreen::~UnxSplashScreen()");
+ SAL_INFO("desktop.splash", "UnxSplashScreen::~UnxSplashScreen()");
if ( m_pOutFd )
{
fclose( m_pOutFd );
@@ -52,7 +52,7 @@ void SAL_CALL UnxSplashScreen::start( const OUString& /*aText*/, sal_Int32 /*nRa
void SAL_CALL UnxSplashScreen::end()
throw ( uno::RuntimeException, std::exception )
{
- SAL_WARN("desktop.splash", "UnxSplashScreen::end()");
+ SAL_INFO("desktop.splash", "UnxSplashScreen::end()");
if( !m_pOutFd )
return;
@@ -101,7 +101,7 @@ UnxSplashScreen::initialize( const css::uno::Sequence< css::uno::Any>& )
{
int fd = aNum.toInt32();
m_pOutFd = fdopen( fd, "w" );
- SAL_WARN("desktop.splash", "Got argument '--splash-pipe=" << fd << " ('"
+ SAL_INFO("desktop.splash", "Got argument '--splash-pipe=" << fd << " ('"
<< aNum << "') ("
<< static_cast<void *>(m_pOutFd) << ")");
}
diff --git a/unotools/source/config/fontcfg.cxx b/unotools/source/config/fontcfg.cxx
index 62913d19785e..b4585c80b6cc 100644
--- a/unotools/source/config/fontcfg.cxx
+++ b/unotools/source/config/fontcfg.cxx
@@ -392,7 +392,7 @@ FontSubstConfiguration::FontSubstConfiguration() :
m_xConfigProvider.clear();
m_xConfigAccess.clear();
}
- SAL_WARN("unotools.config", "config provider: " << static_cast<bool>(m_xConfigProvider.is())
+ SAL_INFO("unotools.config", "config provider: " << static_cast<bool>(m_xConfigProvider.is())
<< ", config access: " << static_cast<bool>(m_xConfigAccess.is()));
}