diff options
author | Tor Lillqvist <tml@collabora.com> | 2015-02-03 12:19:26 +0100 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2015-02-03 12:27:54 +0100 |
commit | b5008653ec887447fe2a0e6b725710550a606ce7 (patch) | |
tree | 6f51fe892f88d58a1d6ef7bd4aec1d529c9cf32c /framework | |
parent | f8d6640afa3c8528d2a66741edc49a48c67902d3 (diff) |
Clean up some weird logging
Change-Id: I8da0a89b7d6e044af8188a87220c654cb7bf9d4d
Diffstat (limited to 'framework')
-rw-r--r-- | framework/source/jobs/jobexecutor.cxx | 2 | ||||
-rw-r--r-- | framework/source/services/desktop.cxx | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/framework/source/jobs/jobexecutor.cxx b/framework/source/jobs/jobexecutor.cxx index 1a19b98d131b..5ce6b99bad3e 100644 --- a/framework/source/jobs/jobexecutor.cxx +++ b/framework/source/jobs/jobexecutor.cxx @@ -200,7 +200,7 @@ void JobExecutor::disposing() { */ void SAL_CALL JobExecutor::trigger( const OUString& sEvent ) throw(css::uno::RuntimeException, std::exception) { - SAL_INFO( "fwk", "fwk (as96863) JobExecutor::trigger()"); + SAL_INFO( "fwk", "JobExecutor::trigger()"); css::uno::Sequence< OUString > lJobs; diff --git a/framework/source/services/desktop.cxx b/framework/source/services/desktop.cxx index 379551b3c3ca..502f7d95283f 100644 --- a/framework/source/services/desktop.cxx +++ b/framework/source/services/desktop.cxx @@ -559,11 +559,10 @@ css::uno::Reference< css::lang::XComponent > SAL_CALL Desktop::loadComponentFrom /* UNSAFE AREA --------------------------------------------------------------------------------------------- */ // Register transaction and reject wrong calls. TransactionGuard aTransaction( m_aTransactionManager, E_HARDEXCEPTIONS ); - SAL_INFO( "fwk.desktop", "framework (as96863) ::Desktop::loadComponentFromURL" ); + SAL_INFO( "fwk.desktop", "loadComponentFromURL" ); css::uno::Reference< css::frame::XComponentLoader > xThis(static_cast< css::frame::XComponentLoader* >(this), css::uno::UNO_QUERY); - SAL_INFO( "fwk.desktop", "PERFORMANCE - Desktop::loadComponentFromURL()" ); return LoadEnv::loadComponentFromURL(xThis, m_xContext, sURL, sTargetFrameName, nSearchFlags, lArguments); } |