diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-06-13 16:27:30 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-06-13 17:06:21 +0100 |
commit | cb8c6bf3c54737a50ecdc9e558415bcb5eea2605 (patch) | |
tree | d3c1b25dbb9cfa44dbf9da5643954bb5bbcb123e /svgio | |
parent | a1dda85b46592b46ae290da43964b22eb0a84e29 (diff) |
don't make it a secret what the errors are
Change-Id: Id5af439df527148e01ef41f21e55ff88ca19e672
Diffstat (limited to 'svgio')
-rw-r--r-- | svgio/source/svguno/xsvgparser.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svgio/source/svguno/xsvgparser.cxx b/svgio/source/svguno/xsvgparser.cxx index 126eb43a37a6..1ee5a23d4fce 100644 --- a/svgio/source/svguno/xsvgparser.cxx +++ b/svgio/source/svguno/xsvgparser.cxx @@ -151,9 +151,9 @@ namespace svgio // be processable from all our processors xParser->parseStream(myInputSource); } - catch(uno::Exception&) + catch(const uno::Exception& e) { - OSL_ENSURE(false, "Parse error (!)"); + SAL_WARN( "svg", "Parse error! : " << e.Message); } // decompose to primitives |