aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2018-10-12 18:41:16 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2018-10-12 18:41:16 +0200
commit6c9e2318d3b0905e4d5cf9223dcc879b418295f1 (patch)
treea8b5b15b4b479964ccda456de24191361a7737c1 /src
parentdeaf20980bcacd8731e9228c86f528ac480c7f55 (diff)
afb-hsrv: Lower the "no handler" message
Bored to see WARNING: Unhandled request to favicon.ico Change-Id: I7289b508f93bcd5ac4650ec32670ed0fd291044e Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'src')
-rw-r--r--src/afb-hsrv.c2
1 files changed, 1 insertions, 1 deletions
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;
}