afb-hsrv: Lower the "no handler" message 95/17195/1
authorJosé Bollo <jose.bollo@iot.bzh>
Fri, 12 Oct 2018 16:41:16 +0000 (18:41 +0200)
committerJosé Bollo <jose.bollo@iot.bzh>
Fri, 12 Oct 2018 16:41:16 +0000 (18:41 +0200)
Bored to see WARNING: Unhandled request to favicon.ico

Change-Id: I7289b508f93bcd5ac4650ec32670ed0fd291044e
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
src/afb-hsrv.c

index 7e680cc..1a4d1ad 100644 (file)
@@ -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;
 }