summaryrefslogtreecommitdiff
path: root/writerfilter/source/filter
diff options
context:
space:
mode:
authorCédric Bosdonnat <cedric.bosdonnat@free.fr>2011-12-08 21:43:19 +0100
committerCédric Bosdonnat <cedric.bosdonnat@free.fr>2011-12-08 21:43:56 +0100
commit52422457d4aada3d9a12cd8cf2945c46dea7b275 (patch)
treee8679409121fe58f6777e3b6a8404bc90151696f /writerfilter/source/filter
parentf1db9ee6c3c6d5be103608379c97d9ec8c865b0d (diff)
Writerfilter: replace OSL_TRACE(...) by SAL_INFO("writerfilter",...)
Diffstat (limited to 'writerfilter/source/filter')
-rw-r--r--writerfilter/source/filter/RtfFilter.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/writerfilter/source/filter/RtfFilter.cxx b/writerfilter/source/filter/RtfFilter.cxx
index 878653966e81..80fba44e5c04 100644
--- a/writerfilter/source/filter/RtfFilter.cxx
+++ b/writerfilter/source/filter/RtfFilter.cxx
@@ -54,7 +54,7 @@ RtfFilter::~RtfFilter()
sal_Bool RtfFilter::filter( const uno::Sequence< beans::PropertyValue >& aDescriptor )
throw (uno::RuntimeException)
{
- OSL_TRACE("%s", OSL_THIS_FUNC);
+ SAL_INFO("writerfilter", OSL_THIS_FUNC);
if( m_xSrcDoc.is() )
{
uno::Reference< lang::XMultiServiceFactory > xMSF(m_xContext->getServiceManager(), uno::UNO_QUERY_THROW);
@@ -102,7 +102,7 @@ sal_Bool RtfFilter::filter( const uno::Sequence< beans::PropertyValue >& aDescri
catch (const uno::Exception& e)
{
#if OSL_DEBUG_LEVEL > 1
- OSL_TRACE( "Exception caught: %s",
+ SAL_INFO("writerfilter", "Exception caught: " <<
rtl::OUStringToOString( e.Message, RTL_TEXTENCODING_UTF8 ).getStr() );
#endif
(void)e;