diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2013-03-21 10:19:50 +0100 |
---|---|---|
committer | Fridrich Strba <fridrich@documentfoundation.org> | 2013-03-22 17:25:40 +0000 |
commit | 5ea8a48a3b26ac326ea5fe4a637a2d9b59cd2b94 (patch) | |
tree | 4f6ab9da621101e5e8d9dc22656700f14939ef7b /oox | |
parent | 1f393e01ca9ed878e6abc2cfa2bc8cf8e64f2ef3 (diff) |
clean up DBG_ERRORn
Those were DBG_ERRORn before and were falsely changed to OSL_TRACE by me.
See:
1707a350af8a0909ae88c2b11deb714f8b2a93ff
533f89e49395bbc31baaab9ade46db934b383e14
Change-Id: I4f4188ba25b988128a539542f49797ea6985702e
Reviewed-on: https://gerrit.libreoffice.org/2900
Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org>
Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/export/chartexport.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/oox/source/export/chartexport.cxx b/oox/source/export/chartexport.cxx index ef3c01433364..4f4b83d53b49 100644 --- a/oox/source/export/chartexport.cxx +++ b/oox/source/export/chartexport.cxx @@ -2417,8 +2417,7 @@ void ChartExport::exportDataPoints( catch( const uno::Exception & rEx ) { (void)rEx; // avoid warning for pro build - OSL_TRACE( "Exception caught during Export of data point: %s", - OUStringToOString( rEx.Message, RTL_TEXTENCODING_ASCII_US ).getStr() ); + SAL_WARN( "oox", "Exception caught during Export of data point: " << rEx.Message ); } } else |