aboutsummaryrefslogtreecommitdiff
path: root/png.c
diff options
context:
space:
mode:
Diffstat (limited to 'png.c')
-rw-r--r--png.c2
1 files changed, 1 insertions, 1 deletions
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;
}