diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-11-15 09:27:19 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-11-15 10:35:24 +0100 |
commit | 8e0e6f3fd5f40c44ad1b3b6a256c7d87d3237fd4 (patch) | |
tree | 5295a47a7306d65cbe2ddce49bfbcd4631685094 /svx | |
parent | c13dc7884f314addd59edce06888db7a2de13d3d (diff) |
Log exception
Change-Id: Icde4e8a6598eb2d4aca7b67d96876bf0ecf017ab
Reviewed-on: https://gerrit.libreoffice.org/82753
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/dialog/SafeModeDialog.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/svx/source/dialog/SafeModeDialog.cxx b/svx/source/dialog/SafeModeDialog.cxx index a9054153da31..8e3921f11678 100644 --- a/svx/source/dialog/SafeModeDialog.cxx +++ b/svx/source/dialog/SafeModeDialog.cxx @@ -13,6 +13,7 @@ #include <rtl/bootstrap.hxx> #include <osl/file.hxx> #include <sfx2/safemode.hxx> +#include <tools/diagnose_ex.h> #include <vcl/svapp.hxx> #include <vcl/weld.hxx> #include <comphelper/processfactory.hxx> @@ -295,6 +296,7 @@ namespace { try { exec->execute(uri, OUString(), css::system::SystemShellExecuteFlags::URIS_ONLY); } catch (const css::uno::Exception &) { + TOOLS_WARN_EXCEPTION("svx.dialog", "opening <" << uri << "> failed:"); } m_xDialog->response(RET_OK); } |