summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2018-04-14 11:08:11 +0200
committerJulien Nabet <serval2412@yahoo.fr>2018-04-14 12:17:00 +0200
commit5bf410957994ec2acfec1fddb822934ed0965820 (patch)
tree85dd29a2a6eb08f6cdcdc51c3e5e6ae512fbc5bf /filter
parent0fe5d61ad2c9e21f393bdad4b706e398728a70d8 (diff)
Related tdf#116999: log the exception (filter/icgm)
and avoid possible long gdb session to find the root cause Change-Id: If455cf1d727a05a36eccca48d96272c77a6e78a7 Reviewed-on: https://gerrit.libreoffice.org/52867 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'filter')
-rw-r--r--filter/source/graphicfilter/icgm/cgm.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/filter/source/graphicfilter/icgm/cgm.cxx b/filter/source/graphicfilter/icgm/cgm.cxx
index 3da966412c77..f3c1ee5d7f72 100644
--- a/filter/source/graphicfilter/icgm/cgm.cxx
+++ b/filter/source/graphicfilter/icgm/cgm.cxx
@@ -730,8 +730,9 @@ ImportCGM(SvStream& rIn, uno::Reference< frame::XModel > const & rXModel, css::u
aXStatInd->end();
}
}
- catch (const css::uno::Exception&)
+ catch (const css::uno::Exception& exc)
{
+ SAL_WARN("filter.icgm", exc);
nStatus = 0;
}
}