summaryrefslogtreecommitdiff
path: root/stoc/source/invocation_adapterfactory
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/invocation_adapterfactory
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/invocation_adapterfactory')
-rw-r--r--stoc/source/invocation_adapterfactory/iafactory.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/stoc/source/invocation_adapterfactory/iafactory.cxx b/stoc/source/invocation_adapterfactory/iafactory.cxx
index 4ed0b8f2d073..e40e8b7895cb 100644
--- a/stoc/source/invocation_adapterfactory/iafactory.cxx
+++ b/stoc/source/invocation_adapterfactory/iafactory.cxx
@@ -756,8 +756,8 @@ FactoryImpl::~FactoryImpl()
(*m_pConverter->release)( m_pConverter );
-#if OSL_DEBUG_LEVEL > 1
- OSL_ENSURE( m_receiver2adapters.empty(), "### still adapters out there!?" );
+#if OSL_DEBUG_LEVEL > 0
+ assert(m_receiver2adapters.empty() && " still adapters out there!?");
#endif
}