quieten debugging soffice startup
Change-Id: I3f9ef32d789b7b344cc09bbed6f344e428a31ca4
This commit is contained in:
@@ -249,7 +249,7 @@ rtl::Reference< OfficeIPCThread > OfficeIPCThread::pGlobalOfficeIPCThread;
|
|||||||
// Into a hex string of well known length ff132a86...
|
// Into a hex string of well known length ff132a86...
|
||||||
OUString CreateMD5FromString( const OUString& aMsg )
|
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 );
|
rtlDigest handle = rtl_digest_create( rtl_Digest_AlgorithmMD5 );
|
||||||
if ( handle )
|
if ( handle )
|
||||||
|
@@ -397,7 +397,7 @@ Reference<deployment::XPackageRegistry> PackageRegistryImpl::create(
|
|||||||
buf.append( Reference<lang::XServiceInfo>(
|
buf.append( Reference<lang::XServiceInfo>(
|
||||||
xBackend, UNO_QUERY_THROW )
|
xBackend, UNO_QUERY_THROW )
|
||||||
->getImplementationName() );
|
->getImplementationName() );
|
||||||
dp_misc::writeConsole( buf.makeStringAndClear() + "\n");
|
dp_misc::TRACE( buf.makeStringAndClear() + "\n");
|
||||||
}
|
}
|
||||||
dp_misc::TRACE( "> [dp_registry.cxx] ambiguous backends:\n\n" );
|
dp_misc::TRACE( "> [dp_registry.cxx] ambiguous backends:\n\n" );
|
||||||
for ( t_registryset::const_iterator iPos(
|
for ( t_registryset::const_iterator iPos(
|
||||||
|
@@ -36,7 +36,7 @@ namespace desktop
|
|||||||
|
|
||||||
UnxSplashScreen::~UnxSplashScreen()
|
UnxSplashScreen::~UnxSplashScreen()
|
||||||
{
|
{
|
||||||
SAL_WARN("desktop.splash", "UnxSplashScreen::~UnxSplashScreen()");
|
SAL_INFO("desktop.splash", "UnxSplashScreen::~UnxSplashScreen()");
|
||||||
if ( m_pOutFd )
|
if ( m_pOutFd )
|
||||||
{
|
{
|
||||||
fclose( 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()
|
void SAL_CALL UnxSplashScreen::end()
|
||||||
throw ( uno::RuntimeException, std::exception )
|
throw ( uno::RuntimeException, std::exception )
|
||||||
{
|
{
|
||||||
SAL_WARN("desktop.splash", "UnxSplashScreen::end()");
|
SAL_INFO("desktop.splash", "UnxSplashScreen::end()");
|
||||||
if( !m_pOutFd )
|
if( !m_pOutFd )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
@@ -101,7 +101,7 @@ UnxSplashScreen::initialize( const css::uno::Sequence< css::uno::Any>& )
|
|||||||
{
|
{
|
||||||
int fd = aNum.toInt32();
|
int fd = aNum.toInt32();
|
||||||
m_pOutFd = fdopen( fd, "w" );
|
m_pOutFd = fdopen( fd, "w" );
|
||||||
SAL_WARN("desktop.splash", "Got argument '--splash-pipe=" << fd << " ('"
|
SAL_INFO("desktop.splash", "Got argument '--splash-pipe=" << fd << " ('"
|
||||||
<< aNum << "') ("
|
<< aNum << "') ("
|
||||||
<< static_cast<void *>(m_pOutFd) << ")");
|
<< static_cast<void *>(m_pOutFd) << ")");
|
||||||
}
|
}
|
||||||
|
@@ -392,7 +392,7 @@ FontSubstConfiguration::FontSubstConfiguration() :
|
|||||||
m_xConfigProvider.clear();
|
m_xConfigProvider.clear();
|
||||||
m_xConfigAccess.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()));
|
<< ", config access: " << static_cast<bool>(m_xConfigAccess.is()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user