diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-02-11 14:42:13 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-02-11 15:12:07 +0100 |
commit | e81888278d953f6b283a489f28c36210c15f093e (patch) | |
tree | f2f82ba7761259a42d65313c2280f680150f30a4 /comphelper | |
parent | 29d2666d92e1105473f339609ba59e54a286b71c (diff) |
comphelper: add SAL_INFO for exception when graphic cannot be loaded
Change-Id: Ia0a4834987ae040a31e19276ece20b74b59ca445
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/container/embeddedobjectcontainer.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/comphelper/source/container/embeddedobjectcontainer.cxx b/comphelper/source/container/embeddedobjectcontainer.cxx index 376ba358bb1f..99a968673a7e 100644 --- a/comphelper/source/container/embeddedobjectcontainer.cxx +++ b/comphelper/source/container/embeddedobjectcontainer.cxx @@ -1153,8 +1153,10 @@ uno::Reference < io::XInputStream > EmbeddedObjectContainer::GetGraphicStream( c } } } - catch (const uno::Exception&) + catch (uno::Exception const& e) { + SAL_INFO("comphelper.container", + "EmbeddedObjectContainer::GetGraphicStream(): exception: " << e.Message); } } |