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 /cui/source | |
parent | 501e5b98ad39156cac465a161709ad38b89e3d63 (diff) |
OSL_TRACE -> SAL_INFO
Change-Id: Ib9e1ed6119b5286871ac10136f7fcbefffe7aebe
Diffstat (limited to 'cui/source')
-rw-r--r-- | cui/source/customize/cfgutil.cxx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/cui/source/customize/cfgutil.cxx b/cui/source/customize/cfgutil.cxx index 5e33fa6acf43..787534a27a60 100644 --- a/cui/source/customize/cfgutil.cxx +++ b/cui/source/customize/cfgutil.cxx @@ -582,7 +582,7 @@ void SfxConfigGroupListBox::Init(const css::uno::Reference< css::uno::XComponent InitStyles(); } - OSL_TRACE("** ** About to initialise SF Scripts"); + SAL_INFO("cui.customize", "** ** About to initialise SF Scripts"); // Add Scripting Framework entries Reference< browse::XBrowseNode > rootNode; Reference< XComponentContext > xCtx( @@ -594,8 +594,7 @@ void SfxConfigGroupListBox::Init(const css::uno::Reference< css::uno::XComponent } catch( Exception& e ) { - OSL_TRACE(" Caught some exception whilst retrieving browse nodes from factory... Exception: %s", - OUStringToOString( e.Message , RTL_TEXTENCODING_ASCII_US ).pData->buffer ); + SAL_INFO("cui.customize", "Caught some exception whilst retrieving browse nodes from factory... Exception: " << e.Message); // TODO exception handling } @@ -770,8 +769,7 @@ Image SfxConfigGroupListBox::GetImage( if ( pmoduleDescr[ pos ].Name == "ooSetupFactoryEmptyDocumentURL" ) { pmoduleDescr[ pos ].Value >>= factoryURL; - OSL_TRACE("factory url for doc images is %s", - OUStringToOString( factoryURL , RTL_TEXTENCODING_ASCII_US ).pData->buffer ); + SAL_INFO("cui.customize", "factory url for doc images is " << factoryURL); break; } } |