diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-03-13 20:47:30 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-03-13 20:51:50 +0000 |
commit | ea943b3badeaf2a68ef08d0911e95603f0b889fc (patch) | |
tree | a0371fe8cae90d35a9219221b36998151545eaa6 /desktop | |
parent | a6435dc298a7dec944eedadd46a17fa6d76e5169 (diff) |
quieten debugging soffice startup
Change-Id: I3f9ef32d789b7b344cc09bbed6f344e428a31ca4
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/app/officeipcthread.cxx | 2 | ||||
-rw-r--r-- | desktop/source/deployment/registry/dp_registry.cxx | 2 | ||||
-rw-r--r-- | desktop/source/splash/unxsplash.cxx | 6 |
3 files changed, 5 insertions, 5 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) << ")"); } |