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 /linguistic | |
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 'linguistic')
-rw-r--r-- | linguistic/source/convdiclist.cxx | 4 | ||||
-rw-r--r-- | linguistic/source/gciterator.cxx | 11 |
2 files changed, 10 insertions, 5 deletions
diff --git a/linguistic/source/convdiclist.cxx b/linguistic/source/convdiclist.cxx index c34d97adf07e..50f1799423d2 100644 --- a/linguistic/source/convdiclist.cxx +++ b/linguistic/source/convdiclist.cxx @@ -45,6 +45,7 @@ #include <unotools/lingucfg.hxx> #include <unotools/pathoptions.hxx> #include <unotools/useroptions.hxx> +#include <tools/diagnose_ex.h> #include "convdic.hxx" #include "convdiclist.hxx" @@ -271,7 +272,8 @@ void SAL_CALL ConvDicNameContainer::removeByName( const OUString& rName ) } catch( ... ) { - SAL_WARN( "linguistic", "HangulHanjaOptionsDialog::OkHdl(): Any other exception" ); + css::uno::Any ex( cppu::getCaughtException() ); + SAL_WARN( "linguistic", "HangulHanjaOptionsDialog::OkHdl(): Any other exception " << exceptionToString(ex) ); } } diff --git a/linguistic/source/gciterator.cxx b/linguistic/source/gciterator.cxx index 5d27876d6d57..325af32849bd 100644 --- a/linguistic/source/gciterator.cxx +++ b/linguistic/source/gciterator.cxx @@ -58,6 +58,7 @@ #include <comphelper/processfactory.hxx> #include <comphelper/propertysequence.hxx> #include <tools/debug.hxx> +#include <tools/diagnose_ex.h> #include <deque> #include <map> @@ -936,10 +937,11 @@ void SAL_CALL GrammarCheckingIterator::processLinguServiceEvent( { throw; } - catch (const ::uno::Exception &rE) + catch (const ::uno::Exception &) { + css::uno::Any ex( cppu::getCaughtException() ); // ignore - SAL_WARN("linguistic", "processLinguServiceEvent: exception: " << rE); + SAL_WARN("linguistic", "processLinguServiceEvent: exception: " << exceptionToString(ex)); } } } @@ -1099,9 +1101,10 @@ void GrammarCheckingIterator::GetConfiguredGCSvcs_Impl() } } } - catch (uno::Exception &) + catch (uno::Exception const &) { - SAL_WARN( "linguistic", "exception caught. Failed to get configured services" ); + css::uno::Any ex( cppu::getCaughtException() ); + SAL_WARN( "linguistic", "exception caught. Failed to get configured services " << exceptionToString(ex) ); } { |