From d1dbaeb55b98e3941e44d26f259fd96c49f4703a Mon Sep 17 00:00:00 2001 From: Thomas Kolb Date: Wed, 21 Aug 2013 16:08:55 +0200 Subject: [PATCH] Only show favicon-message in debug mode --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index fda3934..b5959ff 100644 --- a/src/main.c +++ b/src/main.c @@ -475,7 +475,7 @@ static int connection_handler(void * cls, // serv the favicon, if requested if(strcmp(url, "/favicon.png") == 0) { - LOG(LVL_INFO, "Serving FavIcon request."); + LOG(LVL_DEBUG, "Serving FavIcon request."); return MHD_queue_response(connection, MHD_HTTP_OK, faviconResponse); }