OSL_TRACE -> SAL_INFO

Change-Id: Ib9e1ed6119b5286871ac10136f7fcbefffe7aebe
This commit is contained in:
Thomas Arnhold
2014-05-27 12:31:13 +02:00
parent 501e5b98ad
commit ea491d056d
3 changed files with 11 additions and 23 deletions

View File

@@ -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 );
}
}
}