Downgrade log severity of "Found query string" in httpd.c

This commit is contained in:
ejurgensen 2015-04-13 21:33:00 +02:00
parent 2d8a6a7102
commit dbfd034679
1 changed files with 1 additions and 1 deletions

View File

@ -1008,7 +1008,7 @@ httpd_gen_cb(struct evhttp_request *req, void *arg)
ptr = strchr(uri, '?');
if (ptr)
{
DPRINTF(E_DBG, L_HTTPD, "Found query string\n");
DPRINTF(E_SPAM, L_HTTPD, "Found query string\n");
*ptr = '\0';
}