diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-03-12 17:05:29 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-03-15 13:56:38 +0200 |
commit | cd98512fc4c1bf78bd49f674732811d828c5a2b1 (patch) | |
tree | a8398582c3d897db437554b1711a037d0ef8afba /ucb | |
parent | 6dc7dab6a80a2bc4cc347d144a9b9454a731e6a7 (diff) |
SAL_INFO instead of OSL_TRACE
Change-Id: I40a2e6ea708aa037172bc6e9f9882c88f1d486c3
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/webdav-neon/webdavcontent.cxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ucb/source/ucp/webdav-neon/webdavcontent.cxx b/ucb/source/ucp/webdav-neon/webdavcontent.cxx index 7648b971efa9..14d52d3d006c 100644 --- a/ucb/source/ucp/webdav-neon/webdavcontent.cxx +++ b/ucb/source/ucp/webdav-neon/webdavcontent.cxx @@ -394,10 +394,9 @@ uno::Any SAL_CALL Content::execute( ucb::CommandAbortedException, uno::RuntimeException ) { - OSL_TRACE( ">>>>> Content::execute: start: command: %s, env: %s", - rtl::OUStringToOString( aCommand.Name, - RTL_TEXTENCODING_UTF8 ).getStr(), - Environment.is() ? "present" : "missing" ); + SAL_INFO( "ucb.ucp.webdav", "Content::execute: start: command: " << + aCommand.Name << ", env: " << + (Environment.is() ? "present" : "missing") ); uno::Any aRet; |