From 80321c5f6bcd103439ae44777cfba1ca94a131d1 Mon Sep 17 00:00:00 2001 From: Giuseppe Castagno Date: Thu, 28 Jan 2016 22:01:46 +0100 Subject: Fix typo, change misleading warning message Change-Id: I31537e9d73fa8a5d7c56efcc4832df041472ad5d Reviewed-on: https://gerrit.libreoffice.org/21891 Tested-by: Jenkins Reviewed-by: jan iversen --- ucb/source/ucp/webdav-neon/NeonSession.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ucb') diff --git a/ucb/source/ucp/webdav-neon/NeonSession.cxx b/ucb/source/ucp/webdav-neon/NeonSession.cxx index 23f14405396d..cd2da83083f4 100644 --- a/ucb/source/ucp/webdav-neon/NeonSession.cxx +++ b/ucb/source/ucp/webdav-neon/NeonSession.cxx @@ -860,7 +860,7 @@ void NeonSession::PROPFIND( const OUString & inPath, for(std::vector< OUString >::const_iterator it = inPropNames.begin(); it < inPropNames.end(); ++it) { - SAL_INFO( "ucb.ucp.webdav", "PROFIND - property requested: " << *it ); + SAL_INFO( "ucb.ucp.webdav", "PROPFIND - property requested: " << *it ); } } //debug #endif @@ -1565,7 +1565,7 @@ bool NeonSession::UNLOCK( NeonLock * pLock ) } else { -#if defined SAL_LOG_WARN +#if defined SAL_LOG_INFO { char * p = ne_uri_unparse( &(pLock->uri) ); SAL_INFO( "ucb.ucp.webdav", "UNLOCK (from store) - relative URL: <" << p << "> token: <" << pLock->token << "> failed!" ); @@ -1700,7 +1700,7 @@ void NeonSession::HandleError( int nError, sal_uInt16 code = makeStatusCode( aText ); - SAL_WARN( "ucb.ucp.webdav", "Neon received http error: '" << aText << "'" ); + SAL_WARN( "ucb.ucp.webdav", "Neon returned NE_ERROR, http response status code was: '" << aText << "'" ); if ( code == SC_LOCKED ) { if ( m_aNeonLockStore.findByUri( -- cgit