summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-11-30 14:53:38 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-11-30 14:56:34 +0100
commitf6cf7115599a713db7cd177fa87dbce7cc883810 (patch)
treebac2ef8d37f36df574d13e8ac89a36d68ad712f2 /extensions
parent3f13a8255be93cd3b697f42d691b35418eb87114 (diff)
Add a SAL_INFO
Change-Id: Icca6e25a7c9de408570bf5ceb88aefea692cdc8d
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/bibliography/bibload.cxx5
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;
}
}