summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2015-02-03 12:19:26 +0100
committerTor Lillqvist <tml@collabora.com>2015-02-03 12:27:54 +0100
commitb5008653ec887447fe2a0e6b725710550a606ce7 (patch)
tree6f51fe892f88d58a1d6ef7bd4aec1d529c9cf32c /desktop
parentf8d6640afa3c8528d2a66741edc49a48c67902d3 (diff)
Clean up some weird logging
Change-Id: I8da0a89b7d6e044af8188a87220c654cb7bf9d4d
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/app/app.cxx6
-rw-r--r--desktop/source/app/appinit.cxx2
-rw-r--r--desktop/source/splash/splash.cxx3
3 files changed, 2 insertions, 9 deletions
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) {