From 573c014568a7dd4facbca9cc6b9032996c18338e Mon Sep 17 00:00:00 2001 From: Leonardo Hernández Hernández Date: Tue, 11 Jun 2024 14:14:03 -0600 Subject: use LOG_DBG if the verification of the format failed --- webp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'webp.c') 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; } -- cgit v1.2.3