summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);