aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--jpg.c2
-rw-r--r--png.c2
-rw-r--r--svg.c2
-rw-r--r--webp.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/jpg.c b/jpg.c
index cb013c3..26ace06 100644
--- a/jpg.c
+++ b/jpg.c
@@ -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;
}
diff --git a/png.c b/png.c
index 8f3896f..48df0a2 100644
--- a/png.c
+++ b/png.c
@@ -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;
}
diff --git a/svg.c b/svg.c
index b5fa4b3..a79232e 100644
--- a/svg.c
+++ b/svg.c
@@ -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;
}
diff --git a/webp.c b/webp.c
index b9efbc3..1028f6d 100644
--- a/webp.c
+++ b/webp.c
@@ -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;
}