From ae3e0b6bf5aacd47cbad397fa09827f5beefa758 Mon Sep 17 00:00:00 2001 From: chme Date: Sat, 21 Apr 2018 12:46:48 +0200 Subject: [PATCH] [httpd] Lower log level if file is not found --- src/httpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/httpd.c b/src/httpd.c index 714d40f0..afc76d75 100644 --- a/src/httpd.c +++ b/src/httpd.c @@ -370,7 +370,7 @@ serve_file(struct evhttp_request *req, const char *uri) ret = lstat(path, &sb); if (ret < 0) { - DPRINTF(E_LOG, L_HTTPD, "Could not lstat() %s: %s\n", path, strerror(errno)); + DPRINTF(E_WARN, L_HTTPD, "Could not lstat() %s: %s\n", path, strerror(errno)); httpd_send_error(req, HTTP_NOTFOUND, "Not Found");