aboutsummaryrefslogtreecommitdiff
path: root/svg.c
diff options
context:
space:
mode:
authorLeonardo Hernández Hernández <leohdz172@proton.me>2024-06-11 14:14:03 -0600
committerLeonardo Hernández Hernández <leohdz172@proton.me>2024-06-11 14:21:42 -0600
commit573c014568a7dd4facbca9cc6b9032996c18338e (patch)
tree20ab667b307a6f65f4744bd81743a222882e29ad /svg.c
parent2757c19b151d470839e42cc131010809d63203bf (diff)
downloadwbg-573c014568a7dd4facbca9cc6b9032996c18338e.tar.gz
use LOG_DBG if the verification of the format failed
Diffstat (limited to 'svg.c')
-rw-r--r--svg.c2
1 files changed, 1 insertions, 1 deletions
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;
}