From 183debd7e078d2daef38170afc8542a4e625602c Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 15 Feb 2019 10:44:08 +0200 Subject: pretty up logging of exceptions Add exceptionToString() and getCaughtExceptionAsString() methods in tools. Use the new methods in DbgUnhandledException() Add special-case case code for most of the exceptions that contain extra fields, so all of the relevant data ends up in the log Change-Id: I376f6549b4d7bd480202f8bff17a454657c75ece Reviewed-on: https://gerrit.libreoffice.org/67857 Tested-by: Jenkins Reviewed-by: Noel Grandin --- comphelper/source/misc/documentinfo.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'comphelper') diff --git a/comphelper/source/misc/documentinfo.cxx b/comphelper/source/misc/documentinfo.cxx index 5c460e07f043..8d96d5f5e77e 100644 --- a/comphelper/source/misc/documentinfo.cxx +++ b/comphelper/source/misc/documentinfo.cxx @@ -30,7 +30,6 @@ #include #include -#include #include namespace comphelper { @@ -147,6 +146,7 @@ namespace comphelper { } catch ( const Exception& ) { + // Cannot use tools::exceptionToString here, because the tools module depends on the comphelper module css::uno::Any caught( ::cppu::getCaughtException() ); css::uno::Exception exception; caught >>= exception; -- cgit