diff options
Diffstat (limited to 'glcdskin/cache.c')
-rw-r--r-- | glcdskin/cache.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/glcdskin/cache.c b/glcdskin/cache.c index a0b2929..f0543d9 100644 --- a/glcdskin/cache.c +++ b/glcdskin/cache.c @@ -17,6 +17,8 @@ #include <stdlib.h> #include <string.h> +#include <syslog.h> + #include "cache.h" #include "skin.h" @@ -102,6 +104,7 @@ cImage * cImageCache::Get(const std::string & path, uint16_t & scalew, uint16_t item = LoadImage(path, scalew, scaleh); if (item) { + syslog(LOG_INFO, "INFO: graphlcd: successfully loaded image '%s'\n", path.c_str()); if (images.size() == size) { images.erase(oldest); |