From a668daa9da1330ae787fcf00ec94e8b544ae75a0 Mon Sep 17 00:00:00 2001 From: Justin Maggard Date: Wed, 11 Nov 2020 17:47:53 -0800 Subject: [PATCH] upnphttp: Downgrade "HTTP Connection closed unexpectedly" Lots of clients trigger this during normal operation. --- upnphttp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/upnphttp.c b/upnphttp.c index d9f0a88..c8b5e99 100644 --- a/upnphttp.c +++ b/upnphttp.c @@ -1079,7 +1079,7 @@ Process_upnphttp(struct event *ev) } else if(n==0) { - DPRINTF(E_WARN, L_HTTP, "HTTP Connection closed unexpectedly\n"); + DPRINTF(E_DEBUG, L_HTTP, "HTTP Connection closed unexpectedly\n"); h->state = 100; } else @@ -1125,7 +1125,7 @@ Process_upnphttp(struct event *ev) } else if(n == 0) { - DPRINTF(E_WARN, L_HTTP, "HTTP Connection closed unexpectedly\n"); + DPRINTF(E_DEBUG, L_HTTP, "HTTP Connection closed unexpectedly\n"); h->state = 100; } else