summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-09-02 16:55:33 +0200
committerMichael Stahl <mstahl@redhat.com>2013-09-02 16:59:29 +0200
commitb9ac217b4adbc8681ecbf05419cb4a15a2ddae97 (patch)
tree012c240d329ba43aa0f64d64173455d2739094c6 /ucb
parent5d6a994ccccb336365017d0bb54ebc5dabac7d99 (diff)
ucb: add missing ucb.core log area, and ftp/ext too
Change-Id: Ifa2df0e2dcc193ae02202687c0d6b7ab930db58f
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/ext/ucpext_content.cxx6
-rw-r--r--ucb/source/ucp/ext/ucpext_datasupplier.cxx2
-rw-r--r--ucb/source/ucp/ftp/ftpurl.cxx3
3 files changed, 6 insertions, 5 deletions
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;