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 --- svg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'svg.c') 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; } -- cgit v1.2.3