diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-12-08 15:54:14 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-12-08 17:27:26 +0000 |
commit | e61521f6cf0a065d23b420c4007ea224c3070052 (patch) | |
tree | f506779d08e8ce04af91e8512c27f54c50197323 /testtools | |
parent | 8228227168a7eb3ebf14629bec87f01536c23970 (diff) |
OSL_TRACE -> SAL in sw..ucb
Change-Id: I18f5511f70232d91095ac8527a6c5883c36294f5
Reviewed-on: https://gerrit.libreoffice.org/31762
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'testtools')
-rw-r--r-- | testtools/source/bridgetest/cppobj.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/testtools/source/bridgetest/cppobj.cxx b/testtools/source/bridgetest/cppobj.cxx index 9dcd2392bfcc..bcfa65ab3e3e 100644 --- a/testtools/source/bridgetest/cppobj.cxx +++ b/testtools/source/bridgetest/cppobj.cxx @@ -153,7 +153,7 @@ public: {} virtual ~Test_Impl() override { - OSL_TRACE( "> scalar Test_Impl dtor <" ); + SAL_INFO("testtools", "> scalar Test_Impl dtor <" ); } void SAL_CALL acquire() throw () override @@ -683,9 +683,7 @@ void dothrow(const RuntimeException& e) Any a( getCaughtException() ); RuntimeException exc; OSL_VERIFY( a >>= exc ); - OSL_TRACE( - OUStringToOString( - exc.Message, RTL_TEXTENCODING_UTF8 ).getStr() ); + SAL_INFO("testtools", exc.Message ); } catch (...) // never throws anything { |