summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schirrmacher <vdr.skinflatplus@schirrmacher.eu>2014-02-11 22:03:53 +0100
committerMartin Schirrmacher <vdr.skinflatplus@schirrmacher.eu>2014-02-11 22:03:53 +0100
commit6aa1cd1462db8c1b1d46c1b63bac7071e5a93c1f (patch)
tree9201da5ab26d131389f93f4a8856aa25b937ef8f
parent01ced85236b625635231bb548e04469252ae98df (diff)
downloadskin-flatplus-6aa1cd1462db8c1b1d46c1b63bac7071e5a93c1f.tar.gz
skin-flatplus-6aa1cd1462db8c1b1d46c1b63bac7071e5a93c1f.tar.bz2
remove debug logging from imagecache
-rw-r--r--imagecache.c3
-rw-r--r--imageloader.c1
2 files changed, 0 insertions, 4 deletions
diff --git a/imagecache.c b/imagecache.c
index b220f6e2..1ddc3e24 100644
--- a/imagecache.c
+++ b/imagecache.c
@@ -41,12 +41,9 @@ void cImageCache::InsertImage(cImage *Image, std::string Name, int Width, int He
CacheName[InsertIndex] = Name;
CacheWidth[InsertIndex] = Width;
CacheHeight[InsertIndex] = Height;
-
- dsyslog("imagecache InsertImage");
InsertIndex++;
if( InsertIndex >= MAX_IMAGE_CACHE ) {
InsertIndex = 0;
- dsyslog("imagecache overflow");
}
}
diff --git a/imageloader.c b/imageloader.c
index e989b84d..428f764c 100644
--- a/imageloader.c
+++ b/imageloader.c
@@ -18,7 +18,6 @@ cImageLoader::~cImageLoader() {
cImage* cImageLoader::LoadLogo(const char *logo, int width, int height) {
if( (width == 0) || (height==0) )
return NULL;
- dsyslog("imageloader LoadLogo: %s", logo);
std::string logoLower = logo;
toLowerCase(logoLower);
cString File = cString::sprintf("%s/%s.%s", *Config.logoPath, logoLower.c_str(), *logoExtension);