diff options
-rw-r--r-- | jpg.c | 2 | ||||
-rw-r--r-- | png.c | 2 | ||||
-rw-r--r-- | svg.c | 2 | ||||
-rw-r--r-- | webp.c | 2 |
4 files changed, 4 insertions, 4 deletions
@@ -42,7 +42,7 @@ jpg_load(FILE *fp, const char *path) if (setjmp(err_handler.setjmp_buffer)) { char err_string[JMSG_LENGTH_MAX]; cinfo.err->format_message((j_common_ptr)&cinfo, err_string); - LOG_ERR("%s: %s", path, err_string); + LOG_DBG("%s: %s", path, err_string); goto err; } @@ -32,7 +32,7 @@ png_load(FILE *fp, const char *path) /* Verify PNG header */ uint8_t header[8] = {0}; if (fread(header, 1, 8, fp) != 8 || png_sig_cmp(header, 0, 8)) { - // LOG_ERR("%s: not a PNG", path); + LOG_DBG("%s: not a PNG", path); goto err; } @@ -23,7 +23,7 @@ svg_load(FILE *fp, const char *path) width = image->width; height = image->height; if (width == 0 || height == 0) { - LOG_ERR("%s: width and/or heigth is zero, not a SVG?", path); + LOG_DBG("%s: width and/or heigth is zero, not a SVG?", path); nsvgDelete(image); return NULL; } @@ -43,7 +43,7 @@ webp_load(FILE *fp, const char *path) /* Verify it is a webp image */ if (!WebPGetInfo(file_data, image_size, NULL, NULL)) { - LOG_ERR("%s: not a WebP file", path); + LOG_DBG("%s: not a WebP file", path); goto out; } |