From: José Bollo Date: Fri, 12 Oct 2018 16:41:16 +0000 (+0200) Subject: afb-hsrv: Lower the "no handler" message X-Git-Tag: 6.99.1~15 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=src%2Fapp-framework-binder.git;a=commitdiff_plain;h=6c9e2318d3b0905e4d5cf9223dcc879b418295f1 afb-hsrv: Lower the "no handler" message Bored to see WARNING: Unhandled request to favicon.ico Change-Id: I7289b508f93bcd5ac4650ec32670ed0fd291044e Signed-off-by: José Bollo --- 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; }