diff options
Diffstat (limited to 'apps/recorder/albumart.c')
-rw-r--r-- | apps/recorder/albumart.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/apps/recorder/albumart.c b/apps/recorder/albumart.c index e3cb5f1098..6bd2adade3 100644 --- a/apps/recorder/albumart.c +++ b/apps/recorder/albumart.c @@ -34,12 +34,6 @@ /*#define LOGF_ENABLE*/ #include "logf.h" -#ifdef SIMULATOR -#define LOGFQUEUE logf -#else -#define LOGFQUEUE(...) -#endif - #if defined(HAVE_JPEG) || defined(PLUGIN) #define USE_JPEG_COVER #endif @@ -273,7 +267,7 @@ bool search_albumart_files(const struct mp3entry *id3, const char *size_string, return false; strncpy(buf, path, buflen); - LOGFQUEUE("Album art found: %s", path); + logf("Album art found: %s", path); return true; } @@ -292,7 +286,7 @@ bool find_albumart(const struct mp3entry *id3, char *buf, int buflen) if (!data) return false; - LOGFQUEUE("Looking for album art for %s", id3->path); + logf("Looking for album art for %s", id3->path); /* Write the size string, e.g. ".100x100". */ snprintf(size_string, sizeof(size_string), ".%dx%d", |