From e53beffb4a9ddc7a8bddd37225ec5442ec1eaaf5 Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Mon, 19 Oct 2020 18:47:01 +0200 Subject: [PATCH] Suppress recurring warning about missing user agents in http requests --- libnymea-core/servers/httprequest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libnymea-core/servers/httprequest.cpp b/libnymea-core/servers/httprequest.cpp index e81c794d..29999813 100644 --- a/libnymea-core/servers/httprequest.cpp +++ b/libnymea-core/servers/httprequest.cpp @@ -226,7 +226,7 @@ void HttpRequest::validate() // check User-Agent if (!m_rawHeaderList.contains("User-Agent")) - qCWarning(dcWebServer()) << "User-Agent header is missing"; + qCDebug(dcWebServer()) << "User-Agent header is missing"; // verify content length with actual payload