diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-03-25 12:22:05 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-03-25 16:17:09 +0100 |
commit | 7bb5f9e1a206e1f62df5d72947d564af2aaa09ca (patch) | |
tree | 1daa476286c1dd4f40853e6d605123ce22477846 /stoc | |
parent | 3c5d30c03b4b2d2c4d38d602afc839e7a922bca3 (diff) |
Adapt to sal/log.hxx
Change-Id: Ic197b0fc962ff33b0f0a3c7f04d8208ea9123094
Diffstat (limited to 'stoc')
-rw-r--r-- | stoc/source/javaloader/javaloader.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/stoc/source/javaloader/javaloader.cxx b/stoc/source/javaloader/javaloader.cxx index 56c0feb18ee5..e6d0723ee333 100644 --- a/stoc/source/javaloader/javaloader.cxx +++ b/stoc/source/javaloader/javaloader.cxx @@ -398,8 +398,9 @@ css::uno::Reference<XInterface> SAL_CALL JavaComponentLoader_CreateInstance(cons } } catch(const RuntimeException & runtimeException) { - OString message = OUStringToOString(runtimeException.Message, RTL_TEXTENCODING_ASCII_US); - osl_trace("javaloader - could not init javaloader cause of %s", message.getStr()); + SAL_INFO( + "stoc", + "could not init javaloader due to " << runtimeException.Message); throw; } |