From 386af68921d8ae658b3704943b5f58603d7fbf83 Mon Sep 17 00:00:00 2001 From: Luboš Luňák Date: Thu, 11 Jul 2013 16:00:53 +0200 Subject: remove duplicate debug area for framework/ It'd be probably better to rename all the cryptic abbreviations instead, but two different debug areas for the same thing simply doesn't work well. Change-Id: I895fadb47ebf408a36d13dbb32386caa3f472f1c --- framework/source/fwe/classes/addonsoptions.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'framework') diff --git a/framework/source/fwe/classes/addonsoptions.cxx b/framework/source/fwe/classes/addonsoptions.cxx index ec968416d855..6bbb176dc722 100644 --- a/framework/source/fwe/classes/addonsoptions.cxx +++ b/framework/source/fwe/classes/addonsoptions.cxx @@ -651,7 +651,7 @@ static Image ScaleImage( const Image &rImage, bool bBig ) { Size aSize = ToolBox::GetDefaultImageSize(bBig); BitmapEx aScaleBmp(rImage.GetBitmapEx()); - SAL_INFO("framework", "Addons: expensive scale image from " + SAL_INFO("fwk", "Addons: expensive scale image from " << aScaleBmp.GetSizePixel() << " to " << aSize); aScaleBmp.Scale(aSize, BMP_SCALE_BESTQUALITY); return Image(aScaleBmp); @@ -664,7 +664,7 @@ Image AddonsOptions_Impl::GetImageFromURL( const OUString& aURL, sal_Bool bBig, int nIdx = (int)eSize; int nOtherIdx = nIdx ? 0 : 1; - SAL_INFO("framework", "Expensive: Addons GetImageFromURL " << aURL << + SAL_INFO("fwk", "Expensive: Addons GetImageFromURL " << aURL << " big " << (bBig?"big":"litte") << " scale " << (bNoScale ? "noscale" : "scale")); @@ -681,7 +681,7 @@ Image AddonsOptions_Impl::GetImageFromURL( const OUString& aURL, sal_Bool bBig, aImage = ScaleImage(ReadImageFromURL(rEntry.aURL[nOtherIdx]), bBig); rEntry.aImage[nIdx] = aImage; if (!rEntry.aImage[nIdx]) - SAL_WARN("framework", "failed to load addons image " << aURL); + SAL_WARN("fwk", "failed to load addons image " << aURL); } // FIXME: bNoScale is not terribly meaningful or useful -- cgit