From 6c9e2318d3b0905e4d5cf9223dcc879b418295f1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Bollo?= Date: Fri, 12 Oct 2018 18:41:16 +0200 Subject: [PATCH] afb-hsrv: Lower the "no handler" message MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Bored to see WARNING: Unhandled request to favicon.ico Change-Id: I7289b508f93bcd5ac4650ec32670ed0fd291044e Signed-off-by: José Bollo --- src/afb-hsrv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/afb-hsrv.c b/src/afb-hsrv.c index 7e680cc4..1a4d1ad0 100644 --- a/src/afb-hsrv.c +++ b/src/afb-hsrv.c @@ -237,7 +237,7 @@ static int access_handler( } /* no handler */ - WARNING("Unhandled request to %s", hreq->url); + NOTICE("Unhandled request to %s", hreq->url); afb_hreq_reply_error(hreq, MHD_HTTP_NOT_FOUND); return MHD_YES; } -- 2.16.6