summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--writerfilter/source/dmapper/ModelEventListener.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/writerfilter/source/dmapper/ModelEventListener.cxx b/writerfilter/source/dmapper/ModelEventListener.cxx
index a5b2ca56af9e..22c6b9a73352 100644
--- a/writerfilter/source/dmapper/ModelEventListener.cxx
+++ b/writerfilter/source/dmapper/ModelEventListener.cxx
@@ -27,6 +27,7 @@
************************************************************************/
#include <ModelEventListener.hxx>
#include <PropertyIds.hxx>
+#include <rtl/oustringostreaminserter.hxx>
#include <com/sun/star/document/XEventBroadcaster.hpp>
#include <com/sun/star/text/XDocumentIndex.hpp>
#include <com/sun/star/text/XDocumentIndexesSupplier.hpp>
@@ -98,8 +99,7 @@ void ModelEventListener::notifyEvent( const document::EventObject& rEvent ) thro
}
catch( const uno::Exception& rEx )
{
- (void)rEx;
- OSL_FAIL( "exception while updating indexes" );
+ SAL_WARN("writerfilter", "exception while updating indexes: " << rEx.Message);
}
}
}