From b9ac217b4adbc8681ecbf05419cb4a15a2ddae97 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Mon, 2 Sep 2013 16:55:33 +0200 Subject: ucb: add missing ucb.core log area, and ftp/ext too Change-Id: Ifa2df0e2dcc193ae02202687c0d6b7ab930db58f --- ucb/source/ucp/ext/ucpext_content.cxx | 6 +++--- ucb/source/ucp/ext/ucpext_datasupplier.cxx | 2 +- ucb/source/ucp/ftp/ftpurl.cxx | 3 ++- 3 files changed, 6 insertions(+), 5 deletions(-) (limited to 'ucb/source') diff --git a/ucb/source/ucp/ext/ucpext_content.cxx b/ucb/source/ucp/ext/ucpext_content.cxx index 750da292331c..317a953fd248 100644 --- a/ucb/source/ucp/ext/ucpext_content.cxx +++ b/ucb/source/ucp/ext/ucpext_content.cxx @@ -345,7 +345,7 @@ namespace ucb { namespace ucp { namespace ext // cut the root URL if ( !sURL.match( sRootURL, 0 ) ) { - SAL_INFO( "ucb.ucp", "illegal URL structure - no root" ); + SAL_INFO( "ucb.ucp.ext", "illegal URL structure - no root" ); break; } @@ -355,7 +355,7 @@ namespace ucb { namespace ucp { namespace ext const OUString sSeparatedExtensionId( encodeIdentifier( m_sExtensionId ) + OUString( sal_Unicode( '/' ) ) ); if ( !sRelativeURL.match( sSeparatedExtensionId ) ) { - SAL_INFO( "ucb.ucp", "illegal URL structure - no extension ID" ); + SAL_INFO( "ucb.ucp.ext", "illegal URL structure - no extension ID" ); break; } @@ -364,7 +364,7 @@ namespace ucb { namespace ucp { namespace ext // cut the final slash (if any) if ( sRelativeURL.isEmpty() ) { - SAL_INFO( "ucb.ucp", "illegal URL structure - ExtensionContent should have a level below the extension ID" ); + SAL_INFO( "ucb.ucp.ext", "illegal URL structure - ExtensionContent should have a level below the extension ID" ); break; } diff --git a/ucb/source/ucp/ext/ucpext_datasupplier.cxx b/ucb/source/ucp/ext/ucpext_datasupplier.cxx index a06b71228a74..20a73c80ae47 100644 --- a/ucb/source/ucp/ext/ucpext_datasupplier.cxx +++ b/ucb/source/ucp/ext/ucpext_datasupplier.cxx @@ -153,7 +153,7 @@ namespace ucb { namespace ucp { namespace ext { if ( pExtInfo->getLength() <= 0 ) { - SAL_WARN( "ucb.ucp", "illegal extension info" ); + SAL_WARN( "ucb.ucp.ext", "illegal extension info" ); continue; } diff --git a/ucb/source/ucp/ftp/ftpurl.cxx b/ucb/source/ucp/ftp/ftpurl.cxx index bf2c5231dba5..70c15c4e84fa 100644 --- a/ucb/source/ucp/ftp/ftpurl.cxx +++ b/ucb/source/ucp/ftp/ftpurl.cxx @@ -413,7 +413,8 @@ oslFileHandle FTPURL::open() if(err == CURLE_OK) { oslFileError rc = osl_setFilePos( res, osl_Pos_Absolut, 0 ); - SAL_WARN_IF(rc != osl_File_E_None, "ucb", "osl_setFilePos failed"); + SAL_WARN_IF(rc != osl_File_E_None, "ucb.ucp.ftp", + "osl_setFilePos failed"); } else { osl_closeFile(res),res = 0; -- cgit