diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-04-05 16:20:13 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-04-09 08:46:34 +0200 |
commit | 48fbfe38f60de731ff8bec0372179bedd6670af4 (patch) | |
tree | 2a1bbc4a2207d049d38c058d7f4ebb06a4f01182 /xmloff | |
parent | 115a8539038ecdd5e496fb6c84101c5b14d11068 (diff) |
use more DBG_UNHANDLED_EXCEPTION
so we get nice logs of the exception dynamic type for UNO exceptions.
Change-Id: Ic0b10dc14d354a2c9a0591b3a51d2f1640d54bdb
Reviewed-on: https://gerrit.libreoffice.org/52465
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/chart/SchXMLExport.cxx | 13 | ||||
-rw-r--r-- | xmloff/source/chart/SchXMLImport.cxx | 9 | ||||
-rw-r--r-- | xmloff/source/chart/SchXMLSeries2Context.cxx | 5 | ||||
-rw-r--r-- | xmloff/source/chart/SchXMLSeriesHelper.cxx | 5 | ||||
-rw-r--r-- | xmloff/source/chart/SchXMLTools.cxx | 13 | ||||
-rw-r--r-- | xmloff/source/draw/shapeimport.cxx | 5 | ||||
-rw-r--r-- | xmloff/source/forms/officeforms.cxx | 5 |
7 files changed, 31 insertions, 24 deletions
diff --git a/xmloff/source/chart/SchXMLExport.cxx b/xmloff/source/chart/SchXMLExport.cxx index 3b51533cc14b..c2768d40adf0 100644 --- a/xmloff/source/chart/SchXMLExport.cxx +++ b/xmloff/source/chart/SchXMLExport.cxx @@ -105,6 +105,7 @@ #include <com/sun/star/embed/XVisualObject.hpp> #include <com/sun/star/container/XChild.hpp> +#include <tools/diagnose_ex.h> #include "MultiPropertySetHandler.hxx" #include "PropertyMap.hxx" @@ -344,9 +345,9 @@ Reference< chart2::data::XLabeledDataSequence > lcl_getCategories( const Referen } } } - catch( const uno::Exception & ex ) + catch( const uno::Exception & ) { - SAL_WARN("xmloff.chart", "Exception caught. " << ex); + DBG_UNHANDLED_EXCEPTION("xmloff.chart"); } return xResult; @@ -451,9 +452,9 @@ bool lcl_isSeriesAttachedToFirstAxis( xProp->getPropertyValue("AttachedAxisIndex") >>= nAxisIndex; bResult = (0==nAxisIndex); } - catch( const uno::Exception & ex ) + catch( const uno::Exception & ) { - SAL_WARN("xmloff.chart", "Exception caught. Type: " << OUString::createFromAscii( typeid( ex ).name()) << ", Message: " << ex); + DBG_UNHANDLED_EXCEPTION("xmloff.chart"); } return bResult; @@ -3665,9 +3666,9 @@ void SchXMLExportHelper_Impl::InitRangeSegmentationProperties( const Reference< } } } - catch( const uno::Exception & ex ) + catch( const uno::Exception & ) { - SAL_WARN("xmloff.chart", "Exception caught. Type: " << OUString::createFromAscii( typeid( ex ).name()) << ", Message: " << ex); + DBG_UNHANDLED_EXCEPTION("xmloff.chart"); } } diff --git a/xmloff/source/chart/SchXMLImport.cxx b/xmloff/source/chart/SchXMLImport.cxx index c1cdfc91d813..081be8686bd0 100644 --- a/xmloff/source/chart/SchXMLImport.cxx +++ b/xmloff/source/chart/SchXMLImport.cxx @@ -50,6 +50,7 @@ #include <com/sun/star/document/XDocumentProperties.hpp> #include <com/sun/star/document/XDocumentPropertiesSupplier.hpp> +#include <tools/diagnose_ex.h> #include <typeinfo> using namespace com::sun::star; @@ -404,9 +405,9 @@ void SchXMLImportHelper::DeleteDataSeries( } } } - catch( const uno::Exception & ex ) + catch( const uno::Exception &) { - SAL_WARN("xmloff.chart", "Exception caught. " << ex); + DBG_UNHANDLED_EXCEPTION("xmloff.chart"); } } @@ -482,9 +483,9 @@ Reference< chart2::XDataSeries > SchXMLImportHelper::GetNewDataSeries( } } } - catch( const uno::Exception & ex ) + catch( const uno::Exception & ) { - SAL_WARN("xmloff.chart", "Exception caught. Type: " << OUString::createFromAscii( typeid( ex ).name()) << ", Message: " << ex); + DBG_UNHANDLED_EXCEPTION("xmloff.chart"); } return xResult; } diff --git a/xmloff/source/chart/SchXMLSeries2Context.cxx b/xmloff/source/chart/SchXMLSeries2Context.cxx index b1555ee2b0c4..b646a2e891f5 100644 --- a/xmloff/source/chart/SchXMLSeries2Context.cxx +++ b/xmloff/source/chart/SchXMLSeries2Context.cxx @@ -52,6 +52,7 @@ #include <SchXMLImport.hxx> #include <xmloff/prstylei.hxx> #include <xmloff/xmlprmap.hxx> +#include <tools/diagnose_ex.h> #include <typeinfo> @@ -467,9 +468,9 @@ void SchXMLSeries2Context::StartElement( const uno::Reference< xml::sax::XAttrib Reference< chart2::data::XDataSink > xSink( m_xSeries, uno::UNO_QUERY_THROW ); xSink->setData( aSeq ); } - catch( const uno::Exception & ex ) + catch( const uno::Exception &) { - SAL_WARN("xmloff.chart", "Exception caught. " << ex); + DBG_UNHANDLED_EXCEPTION("xmloff.chart"); } //init mbSymbolSizeIsMissingInFile: diff --git a/xmloff/source/chart/SchXMLSeriesHelper.cxx b/xmloff/source/chart/SchXMLSeriesHelper.cxx index 7ead41dfb260..7391109664a5 100644 --- a/xmloff/source/chart/SchXMLSeriesHelper.cxx +++ b/xmloff/source/chart/SchXMLSeriesHelper.cxx @@ -26,6 +26,7 @@ #include <com/sun/star/lang/XMultiServiceFactory.hpp> #include <rtl/ustring.h> +#include <tools/diagnose_ex.h> #include <typeinfo> @@ -59,9 +60,9 @@ using ::com::sun::star::uno::Sequence; } } } - catch( const uno::Exception & ex ) + catch( const uno::Exception & ) { - SAL_WARN("xmloff.chart", "Exception caught. Type: " << OUString::createFromAscii( typeid( ex ).name() ) << ", Message: " << ex ); + DBG_UNHANDLED_EXCEPTION("xmloff.chart"); } return aResult; diff --git a/xmloff/source/chart/SchXMLTools.cxx b/xmloff/source/chart/SchXMLTools.cxx index 003a6f6f3fb7..ff3647b82ab7 100644 --- a/xmloff/source/chart/SchXMLTools.cxx +++ b/xmloff/source/chart/SchXMLTools.cxx @@ -47,6 +47,7 @@ #include <com/sun/star/lang/XServiceName.hpp> #include <comphelper/processfactory.hxx> +#include <tools/diagnose_ex.h> #include <algorithm> #include <map> @@ -505,9 +506,9 @@ void CreateCategories( xLabeledSeq->setValues(xSequence); } - catch( const lang::IllegalArgumentException & ex ) + catch( const lang::IllegalArgumentException & ) { - SAL_WARN("xmloff.chart", "IllegalArgumentException caught, Message: " << ex ); + DBG_UNHANDLED_EXCEPTION("xmloff.chart"); } aData.Categories.set( xLabeledSeq ); if( pLSequencesPerIndex ) @@ -644,9 +645,9 @@ void setXMLRangePropertyAtDataSequence( if( xInfo.is() && xInfo->hasPropertyByName( aXMLRangePropName )) xProp->setPropertyValue( aXMLRangePropName, uno::makeAny( rXMLRange )); } - catch( const uno::Exception & ex ) + catch( const uno::Exception & ) { - SAL_WARN("xmloff.chart", "Exception caught, Message: " << ex ); + DBG_UNHANDLED_EXCEPTION("xmloff.chart"); } } @@ -671,9 +672,9 @@ bool getXMLRangePropertyFromDataSequence( if( bClearProp && bResult ) xProp->setPropertyValue( aXMLRangePropName, uno::Any( OUString())); } - catch( const uno::Exception & ex ) + catch( const uno::Exception & ) { - SAL_WARN("xmloff.chart", "Exception caught, Message: " << ex ); + DBG_UNHANDLED_EXCEPTION("xmloff.chart"); } } return bResult; diff --git a/xmloff/source/draw/shapeimport.cxx b/xmloff/source/draw/shapeimport.cxx index 37215f14910d..b066336de0f4 100644 --- a/xmloff/source/draw/shapeimport.cxx +++ b/xmloff/source/draw/shapeimport.cxx @@ -20,6 +20,7 @@ #include <o3tl/make_unique.hxx> #include <tools/debug.hxx> +#include <tools/diagnose_ex.h> #include <com/sun/star/text/PositionLayoutDir.hpp> #include <com/sun/star/chart/XChartDocument.hpp> @@ -834,9 +835,9 @@ void XMLShapeImportHelper::popGroupAndSort() { mpImpl->mpSortContext->popGroupAndSort(); } - catch( const uno::Exception& rException ) + catch( const uno::Exception& ) { - SAL_WARN("xmloff", "exception while sorting shapes, sorting failed: " << rException); + DBG_UNHANDLED_EXCEPTION("xmloff", "exception while sorting shapes, sorting failed"); } // put parent on top and drop current context, we are done diff --git a/xmloff/source/forms/officeforms.cxx b/xmloff/source/forms/officeforms.cxx index def7655747b1..57a1f23d0546 100644 --- a/xmloff/source/forms/officeforms.cxx +++ b/xmloff/source/forms/officeforms.cxx @@ -27,6 +27,7 @@ #include <xmloff/xmlimp.hxx> #include <xmloff/nmspmap.hxx> #include <comphelper/extract.hxx> +#include <tools/diagnose_ex.h> #include "strings.hxx" namespace xmloff @@ -55,9 +56,9 @@ namespace xmloff try { pRet = GetImport().GetFormImport()->createContext( _nPrefix, _rLocalName, xAttrList ); - } catch (const Exception& rException) + } catch (const Exception&) { - SAL_WARN("xmloff.forms", "OFormsRootImport::CreateChildContext: " << rException); + DBG_UNHANDLED_EXCEPTION("xmloff.forms"); } return pRet; } |