From 31bddb874d2be54b81cdd7ea142b58db18e11a5b Mon Sep 17 00:00:00 2001 From: Rohan Kumar Date: Tue, 8 Mar 2016 23:41:03 +0530 Subject: tdf#91794 removed OSL_DEBUG_LEVEL > 1 conditionals MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I removed all the OSL_DEBUG_LEVEL > 1 conditionals by SAL_INFOs or OSL_DEBUG_LEVEL > 0 Change-Id: I261644a179e763612204bbb0e54a869fa1a62298 Reviewed-on: https://gerrit.libreoffice.org/23035 Tested-by: Jenkins Reviewed-by: Björn Michaelsen --- stoc/test/testconv.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'stoc/test') diff --git a/stoc/test/testconv.cxx b/stoc/test/testconv.cxx index d78e77b01db4..afe682fb8631 100644 --- a/stoc/test/testconv.cxx +++ b/stoc/test/testconv.cxx @@ -187,7 +187,7 @@ static sal_Bool convertTo( const Type & rDestType, const Any & rVal, sal_Bool bE printf( aExcMsg.getStr() ); printf( "]\n" ); aRet = s_xConverter->convertTo( rVal, rDestType ); -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 // for debugging, to trace again try { @@ -206,7 +206,7 @@ static sal_Bool convertTo( const Type & rDestType, const Any & rVal, sal_Bool bE printf( " to " ); printValue( aRet ); printf( " was successful, but was not expected to be!\n" ); -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 // for debugging, to trace again aRet = s_xConverter->convertTo( rVal, rDestType ); #endif -- cgit