diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2014-05-27 12:31:13 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-05-27 12:34:30 +0200 |
commit | ea491d056d301b8b4507a2a2772cd09342284e56 (patch) | |
tree | fab6387815d5877cfa24df20a4a5d6def5749a6f /framework | |
parent | 501e5b98ad39156cac465a161709ad38b89e3d63 (diff) |
OSL_TRACE -> SAL_INFO
Change-Id: Ib9e1ed6119b5286871ac10136f7fcbefffe7aebe
Diffstat (limited to 'framework')
-rw-r--r-- | framework/source/uielement/popuptoolbarcontroller.cxx | 8 |
1 files changed, 2 insertions, 6 deletions
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 ); } } } |