diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-11-30 14:53:38 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-11-30 14:56:34 +0100 |
commit | f6cf7115599a713db7cd177fa87dbce7cc883810 (patch) | |
tree | bac2ef8d37f36df574d13e8ac89a36d68ad712f2 /extensions/source | |
parent | 3f13a8255be93cd3b697f42d691b35418eb87114 (diff) |
Add a SAL_INFO
Change-Id: Icca6e25a7c9de408570bf5ceb88aefea692cdc8d
Diffstat (limited to 'extensions/source')
-rw-r--r-- | extensions/source/bibliography/bibload.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/extensions/source/bibliography/bibload.cxx b/extensions/source/bibliography/bibload.cxx index f0ff55a73285..24367917fbf7 100644 --- a/extensions/source/bibliography/bibload.cxx +++ b/extensions/source/bibliography/bibload.cxx @@ -245,8 +245,11 @@ namespace // and the bibliography is assumed to work return com::sun::star::sdbc::DriverManager::create(comphelper::getProcessComponentContext()).is(); } - catch(...) + catch (Exception & e) { + SAL_INFO( + "extensions.bibliography", + "assuming Base to be missing; caught " << e.Message); return false; } } |