From 2c05d758b2b62c9df413e2514fb3cd233d0f3ec7 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 29 Sep 2017 16:21:54 +0200 Subject: add << operator for css::uno::Exception Change-Id: Ia23dafd07133779144965682df3b7125a3214235 Reviewed-on: https://gerrit.libreoffice.org/43046 Reviewed-by: Stephan Bergmann Tested-by: Jenkins --- cppuhelper/source/tdmgr.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cppuhelper/source/tdmgr.cxx') diff --git a/cppuhelper/source/tdmgr.cxx b/cppuhelper/source/tdmgr.cxx index 02da05163732..f86dca136753 100644 --- a/cppuhelper/source/tdmgr.cxx +++ b/cppuhelper/source/tdmgr.cxx @@ -591,11 +591,11 @@ static void SAL_CALL typelib_callback( } catch (const container::NoSuchElementException & exc) { - SAL_INFO("cppuhelper", "typelibrary type not available: " << exc.Message ); + SAL_INFO("cppuhelper", "typelibrary type not available: " << exc ); } catch (const Exception & exc) { - SAL_INFO("cppuhelper", exc.Message ); + SAL_INFO("cppuhelper", exc ); } } } -- cgit