From ea943b3badeaf2a68ef08d0911e95603f0b889fc Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sun, 13 Mar 2016 20:47:30 +0000 Subject: quieten debugging soffice startup Change-Id: I3f9ef32d789b7b344cc09bbed6f344e428a31ca4 --- desktop/source/app/officeipcthread.cxx | 2 +- desktop/source/deployment/registry/dp_registry.cxx | 2 +- desktop/source/splash/unxsplash.cxx | 6 +++--- unotools/source/config/fontcfg.cxx | 2 +- 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 PackageRegistryImpl::create( buf.append( Reference( 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(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(m_xConfigProvider.is()) + SAL_INFO("unotools.config", "config provider: " << static_cast(m_xConfigProvider.is()) << ", config access: " << static_cast(m_xConfigAccess.is())); } -- cgit