From 0ebdd89715331a933fc74503e284d5c0659b0ca3 Mon Sep 17 00:00:00 2001 From: ejurgensen Date: Mon, 30 Oct 2017 20:56:26 +0100 Subject: [PATCH] [httpd_dacp] Log unrecognised requests --- src/httpd_dacp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/httpd_dacp.c b/src/httpd_dacp.c index c5e9052c..f3c0c55f 100644 --- a/src/httpd_dacp.c +++ b/src/httpd_dacp.c @@ -2699,7 +2699,7 @@ dacp_request(struct evhttp_request *req) if (handler < 0) { - DPRINTF(E_LOG, L_DACP, "Unrecognized DACP request\n"); + DPRINTF(E_LOG, L_DACP, "Unrecognized DACP request: '%s'\n", uri); httpd_send_error(req, HTTP_BADREQUEST, "Bad Request");