From f4f727f7bfc848deb82e4df4c6e3b9affaf5f613 Mon Sep 17 00:00:00 2001 From: Radu Ioan Date: Tue, 5 Feb 2013 00:18:15 +0200 Subject: fdo#43157 - Clean up OSL_ASSERT, DBG_ASSERT - changed osl_trace with sal_info Change-Id: I6504abf50f6193db52d101ec856bcaf1ee2a982c --- sd/source/ui/framework/configuration/ConfigurationTracer.cxx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'sd/source/ui/framework') diff --git a/sd/source/ui/framework/configuration/ConfigurationTracer.cxx b/sd/source/ui/framework/configuration/ConfigurationTracer.cxx index b591c803ac9b..74839b903aee 100644 --- a/sd/source/ui/framework/configuration/ConfigurationTracer.cxx +++ b/sd/source/ui/framework/configuration/ConfigurationTracer.cxx @@ -21,6 +21,7 @@ #include "ConfigurationTracer.hxx" #include +#include "sal/log.hxx" using namespace ::com::sun::star::uno; using namespace ::com::sun::star::drawing::framework; @@ -32,16 +33,16 @@ void ConfigurationTracer::TraceConfiguration ( const char* pMessage) { #ifdef DEBUG - OSL_TRACE("%s at %p {", pMessage, rxConfiguration.get()); + SAL_INFO("sd.ui","" << pMessage << " at " << rxConfiguration.get() << " {"); if (rxConfiguration.is()) { TraceBoundResources(rxConfiguration, NULL, 0); } else { - OSL_TRACE(" empty"); + SAL_INFO("sd.ui"," empty"); } - OSL_TRACE("}"); + SAL_INFO("sd.ui","}"); #else (void)rxConfiguration; (void)pMessage; @@ -65,7 +66,7 @@ void ConfigurationTracer::TraceBoundResources ( ::rtl::OUString sLine (aResourceList[nIndex]->getResourceURL()); for (int i=0; i