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