summaryrefslogtreecommitdiff
path: root/sdext
diff options
context:
space:
mode:
authorDouglas Mencken <dougmencken@gmail.com>2016-03-16 14:51:57 -0400
committerjan iversen <jani@documentfoundation.org>2016-03-17 07:40:41 +0000
commitbe2c79c0fab348ade79f20f7a3727be818997d7f (patch)
treeae463d0cc4f86d108dfdffe40bb515a9da674b55 /sdext
parent8e0b08c3053ed5472409b1ea7e02653aad38f7d6 (diff)
sdext.presenter: change OSL_TRACE -> SAL_INFO
Change-Id: I34724f28b96b00b8afe2b618d8d47561082987ca Reviewed-on: https://gerrit.libreoffice.org/23311 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: jan iversen <jani@documentfoundation.org>
Diffstat (limited to 'sdext')
-rw-r--r--sdext/source/presenter/PresenterAccessibility.cxx12
1 files changed, 5 insertions, 7 deletions
diff --git a/sdext/source/presenter/PresenterAccessibility.cxx b/sdext/source/presenter/PresenterAccessibility.cxx
index 1fd9a771e3c0..0db850827f28 100644
--- a/sdext/source/presenter/PresenterAccessibility.cxx
+++ b/sdext/source/presenter/PresenterAccessibility.cxx
@@ -1569,15 +1569,13 @@ Sequence<css::beans::PropertyValue> SAL_CALL
ThrowIfDisposed();
#if OSL_DEBUG_LEVEL > 0
- OSL_TRACE("PresenterAccessible::AccessibleParagraph::getCharacterAttributes at %p,%d returns empty set",
- this,nIndex);
- for (sal_Int32 nAttributeIndex(0),nAttributeCount(rRequestedAttributes.getLength());
- nAttributeIndex<nAttributeCount;
+ SAL_INFO( "sdext.presenter", OSL_THIS_FUNC << " at " << this << ", " << nIndex << " returns empty set" );
+ for (sal_Int32 nAttributeIndex(0), nAttributeCount(rRequestedAttributes.getLength());
+ nAttributeIndex < nAttributeCount;
++nAttributeIndex)
{
- OSL_TRACE(" requested attribute %d is %s",
- nAttributeIndex,
- OUStringToOString(rRequestedAttributes[nAttributeIndex], RTL_TEXTENCODING_UTF8).getStr());
+ SAL_INFO( "sdext.presenter",
+ " requested attribute " << nAttributeIndex << " is " << rRequestedAttributes[nAttributeIndex] );
}
#endif