From ea491d056d301b8b4507a2a2772cd09342284e56 Mon Sep 17 00:00:00 2001 From: Thomas Arnhold Date: Tue, 27 May 2014 12:31:13 +0200 Subject: OSL_TRACE -> SAL_INFO Change-Id: Ib9e1ed6119b5286871ac10136f7fcbefffe7aebe --- framework/source/uielement/popuptoolbarcontroller.cxx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'framework/source') diff --git a/framework/source/uielement/popuptoolbarcontroller.cxx b/framework/source/uielement/popuptoolbarcontroller.cxx index 8d09b3581166..e17a86b02b76 100644 --- a/framework/source/uielement/popuptoolbarcontroller.cxx +++ b/framework/source/uielement/popuptoolbarcontroller.cxx @@ -142,9 +142,7 @@ throw ( css::uno::Exception, css::uno::RuntimeException, std::exception ) } catch (const css::uno::Exception& e) { - OSL_TRACE( "PopupMenuToolbarController - caught an exception! %s", - rtl::OUStringToOString( e.Message, RTL_TEXTENCODING_UTF8 ).getStr() ); - (void) e; + SAL_INFO( "framework.uielement", "Caught an exception: " << e.Message ); } SolarMutexGuard aSolarLock; @@ -244,9 +242,7 @@ void PopupMenuToolbarController::createPopupMenuController() catch ( const css::uno::Exception &e ) { m_xPopupMenu.clear(); - OSL_TRACE( "PopupMenuToolbarController - caught an exception! %s", - OUStringToOString( e.Message, RTL_TEXTENCODING_UTF8 ).getStr() ); - (void) e; + SAL_INFO( "framework.uielement", "Caught an exception: " << e.Message ); } } } -- cgit