From b5008653ec887447fe2a0e6b725710550a606ce7 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Tue, 3 Feb 2015 12:19:26 +0100 Subject: Clean up some weird logging Change-Id: I8da0a89b7d6e044af8188a87220c654cb7bf9d4d --- desktop/source/app/app.cxx | 6 ------ desktop/source/app/appinit.cxx | 2 +- desktop/source/splash/splash.cxx | 3 +-- 3 files changed, 2 insertions(+), 9 deletions(-) (limited to 'desktop') diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx index 2118fccf1bb6..562b1f2692d0 100644 --- a/desktop/source/app/app.cxx +++ b/desktop/source/app/app.cxx @@ -1346,9 +1346,7 @@ int Desktop::Main() ResMgr::SetReadStringHook( ReplaceStringHookProc ); // Startup screen - SAL_INFO( "desktop.app", "desktop (lo119109) Desktop::Main { OpenSplashScreen" ); OpenSplashScreen(); - SAL_INFO( "desktop.app", "desktop (lo119109) Desktop::Main } OpenSplashScreen" ); SetSplashScreenProgress(10); @@ -1383,7 +1381,6 @@ int Desktop::Main() #if HAVE_FEATURE_DESKTOP // check user installation directory for lockfile so we can be sure // there is no other instance using our data files from a remote host - SAL_INFO( "desktop.app", "desktop (lo119109) Desktop::Main -> Lockfile" ); m_xLockfile.reset(new Lockfile); if ( !rCmdLineArgs.IsHeadless() && !rCmdLineArgs.IsInvisible() && @@ -1392,16 +1389,13 @@ int Desktop::Main() // Lockfile exists, and user clicked 'no' return EXIT_FAILURE; } - SAL_INFO( "desktop.app", "desktop (lo119109) Desktop::Main <- Lockfile" ); // check if accessibility is enabled but not working and allow to quit - SAL_INFO( "desktop.app", "{ GetEnableATToolSupport" ); if( Application::GetSettings().GetMiscSettings().GetEnableATToolSupport() ) { if( !InitAccessBridge() ) return EXIT_FAILURE; } - SAL_INFO( "desktop.app", "} GetEnableATToolSupport" ); #endif // terminate if requested... diff --git a/desktop/source/app/appinit.cxx b/desktop/source/app/appinit.cxx index 797ea9c84a74..cbfd1a39b3f7 100644 --- a/desktop/source/app/appinit.cxx +++ b/desktop/source/app/appinit.cxx @@ -218,7 +218,7 @@ class enable void Desktop::enableAcceptors() { - SAL_INFO( "desktop.app", "desktop (lo119109) Desktop::enableAcceptors"); + SAL_INFO( "desktop.app", "enableAcceptors"); if (!bAccept) { // from now on, all new acceptors are enabled diff --git a/desktop/source/splash/splash.cxx b/desktop/source/splash/splash.cxx index f3163a2a2a52..2649c24c0307 100644 --- a/desktop/source/splash/splash.cxx +++ b/desktop/source/splash/splash.cxx @@ -222,8 +222,7 @@ void SAL_CALL SplashScreen::setText(const OUString& rText) void SAL_CALL SplashScreen::setValue(sal_Int32 nValue) throw (RuntimeException, std::exception) { - SAL_INFO( "desktop.splash", "::SplashScreen::setValue (lo119109)" ); - SAL_INFO( "desktop.splash", "value=" << nValue ); + SAL_INFO( "desktop.splash", "setValue: " << nValue ); SolarMutexGuard aSolarGuard; if (_bVisible && !_bProgressEnd) { -- cgit