summaryrefslogtreecommitdiff
path: root/stoc/source/corereflection
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/source/corereflection
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/source/corereflection')
-rw-r--r--stoc/source/corereflection/crefl.cxx7
1 files changed, 1 insertions, 6 deletions
diff --git a/stoc/source/corereflection/crefl.cxx b/stoc/source/corereflection/crefl.cxx
index 3304233caf3f..d0e9e8cc4a83 100644
--- a/stoc/source/corereflection/crefl.cxx
+++ b/stoc/source/corereflection/crefl.cxx
@@ -210,12 +210,7 @@ inline Reference< XIdlClass > IdlReflectionServiceImpl::constructClass(
return new IdlClassImpl( this, pTypeDescr->pTypeName, pTypeDescr->eTypeClass, pTypeDescr );
default:
-#if OSL_DEBUG_LEVEL > 1
- OSL_TRACE( "### corereflection type unsupported: " );
- OString aName( OUStringToOString( pTypeDescr->pTypeName, RTL_TEXTENCODING_ASCII_US ) );
- OSL_TRACE( "%s", aName.getStr() );
- OSL_TRACE( "\n" );
-#endif
+ SAL_INFO("stoc", " corereflection type unsupported: " << pTypeDescr->pTypeName);
return Reference< XIdlClass >();
}
}