diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-03-01 14:42:38 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-03-07 07:12:39 +0100 |
commit | 8b5e23eac31cafbd442a3acab5fbcf98bfd0af11 (patch) | |
tree | d41feeea533127280e0503d0dc2dd55a4ab83ce8 /sd/source/ui/accessibility | |
parent | 4f810905fa74128871f2fe924a3d28a79f4e4261 (diff) |
log nice exception messages whereever possible
Change-Id: Idd125c18bee1a39b9ea8cc4f8c55cddfd37c33e1
Reviewed-on: https://gerrit.libreoffice.org/68579
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd/source/ui/accessibility')
-rw-r--r-- | sd/source/ui/accessibility/AccessiblePageShape.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sd/source/ui/accessibility/AccessiblePageShape.cxx b/sd/source/ui/accessibility/AccessiblePageShape.cxx index 21cf52790532..05d97557882f 100644 --- a/sd/source/ui/accessibility/AccessiblePageShape.cxx +++ b/sd/source/ui/accessibility/AccessiblePageShape.cxx @@ -20,6 +20,7 @@ #include <AccessiblePageShape.hxx> #include <svx/AccessibleShapeInfo.hxx> #include <svx/IAccessibleViewForwarder.hxx> +#include <tools/diagnose_ex.h> #include <tools/gen.hxx> #include <sal/log.hxx> @@ -201,7 +202,8 @@ sal_Int32 SAL_CALL AccessiblePageShape::getBackground() } catch (const css::beans::UnknownPropertyException&) { - SAL_WARN("sd", "caught exception due to unknown property"); + css::uno::Any ex( cppu::getCaughtException() ); + SAL_WARN("sd", "caught exception due to unknown property " << exceptionToString(ex)); // Ignore exception and return default color. } return nColor; |