summaryrefslogtreecommitdiff
path: root/stoc/test
diff options
context:
space:
mode:
authorRohan Kumar <rohankanojia420@gmail.com>2016-03-08 23:41:03 +0530
committerBjörn Michaelsen <bjoern.michaelsen@canonical.com>2016-04-12 11:53:28 +0000
commit31bddb874d2be54b81cdd7ea142b58db18e11a5b (patch)
treec5a5a245c6da1b72d30471875f0bb6a8951d2afb /stoc/test
parent35d7ca80930997febb31eb7cdd95eeb684514bec (diff)
tdf#91794 removed OSL_DEBUG_LEVEL > 1 conditionals
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 <ci@libreoffice.org> Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
Diffstat (limited to 'stoc/test')
-rw-r--r--stoc/test/testconv.cxx4
1 files changed, 2 insertions, 2 deletions
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