From d6411207bd83b34b4d6c6fd68cd41d3005228b05 Mon Sep 17 00:00:00 2001 From: Rohan Kumar Date: Wed, 9 Mar 2016 17:53:50 +0530 Subject: tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I removed OSL_DEBUG_LEVEL > 1 conditionals to SAL_INFO statements Change-Id: I6f74f5146473464758f35629877a76bb2bc39b4e Reviewed-on: https://gerrit.libreoffice.org/23071 Tested-by: Jenkins Reviewed-by: Björn Michaelsen --- cppuhelper/source/factory.cxx | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'cppuhelper/source/factory.cxx') diff --git a/cppuhelper/source/factory.cxx b/cppuhelper/source/factory.cxx index f14494ffe01c..5748921fd73a 100644 --- a/cppuhelper/source/factory.cxx +++ b/cppuhelper/source/factory.cxx @@ -699,9 +699,7 @@ Reference SAL_CALL ORegistryFactoryHelper::createInstanceWithArgume } else if( xModuleFactory.is() ) { -#if OSL_DEBUG_LEVEL > 1 - OSL_TRACE( "### no context ORegistryFactoryHelper::createInstanceWithArgumentsAndContext()!" ); -#endif + SAL_INFO("cppuhelper", "no context ORegistryFactoryHelper::createInstanceWithArgumentsAndContext()!"); return xModuleFactory->createInstanceWithArgumentsAndContext( Arguments, Reference< XComponentContext >() ); } @@ -732,12 +730,7 @@ Reference< XInterface > ORegistryFactoryHelper::createInstanceWithArgumentsAndCo } else if( xModuleFactoryDepr.is() ) { -#if OSL_DEBUG_LEVEL > 1 - if (xContext.is()) - { - OSL_TRACE( "### ignoring context calling ORegistryFactoryHelper::createInstanceWithArgumentsAndContext()!" ); - } -#endif + SAL_INFO_IF(xContext.is(), "cppuhelper", "ignoring context calling ORegistryFactoryHelper::createInstaceWithArgumentsAndContext()!"); return xModuleFactoryDepr->createInstanceWithArguments( rArguments ); } -- cgit