diff options
author | Miklos Vajna <vmiklos@suse.cz> | 2012-06-05 15:55:13 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@suse.cz> | 2012-06-05 15:56:41 +0200 |
commit | 25d7dffde13ecf32df1cce521a91c7075f372167 (patch) | |
tree | 143838f693c30c2453ca3c900d94f16432a45218 /oox/source | |
parent | 8d5402b8a8bf32a7e33d3d18d6324259523aa8a6 (diff) |
oox::drawingml::TextParagraph: OSL_TRACE -> SAL_INFO
Change-Id: I79af1d624c420dff87751691ff8aa484fd3de2b6
Diffstat (limited to 'oox/source')
-rw-r--r-- | oox/source/drawingml/textparagraph.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/drawingml/textparagraph.cxx b/oox/source/drawingml/textparagraph.cxx index 63a28452ba9e..adaae125969e 100644 --- a/oox/source/drawingml/textparagraph.cxx +++ b/oox/source/drawingml/textparagraph.cxx @@ -65,7 +65,7 @@ void TextParagraph::insertAt( sal_Int16 nLevel = maProperties.getLevel(); - OSL_TRACE("TextParagraph::insertAt() - level %d", nLevel); + SAL_INFO("oox", "TextParagraph::insertAt() - level " << nLevel); const TextParagraphPropertiesVector& rListStyle = rTextListStyle.getListStyle(); if ( nLevel >= static_cast< sal_Int16 >( rListStyle.size() ) ) @@ -143,7 +143,7 @@ void TextParagraph::insertAt( } catch( Exception & ) { - OSL_TRACE("OOX: exception in TextParagraph::insertAt"); + SAL_INFO("oox", "exception in TextParagraph::insertAt"); } } |