From ca041bbd0297ef2d1714ab4416b5dadb64b440d8 Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Thu, 25 Jun 2020 23:29:54 +0200 Subject: [PATCH] Convert recurring UPnP message to a debug print --- .../hardware/network/upnp/upnpdiscoveryimplementation.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libnymea-core/hardware/network/upnp/upnpdiscoveryimplementation.cpp b/libnymea-core/hardware/network/upnp/upnpdiscoveryimplementation.cpp index cb4d4ebe..9b4424a0 100644 --- a/libnymea-core/hardware/network/upnp/upnpdiscoveryimplementation.cpp +++ b/libnymea-core/hardware/network/upnp/upnpdiscoveryimplementation.cpp @@ -161,11 +161,11 @@ void UpnpDiscoveryImplementation::respondToSearchRequest(QHostAddress host, int globalSettings.endGroup(); if (serverPort == -1) { - qCWarning(dcUpnp()) << "No matching WebServer configuration found. Discarding UPnP request! UPnP requires a plaintext webserver."; + qCDebug(dcUpnp()) << "No matching WebServer configuration found. Discarding UPnP request! UPnP requires a plaintext webserver."; return; } if (useSSL) { - qCWarning(dcUpnp()) << "Could not find a WebServer without SSL. Using one with SSL. This will not work with many clients."; + qCDebug(dcUpnp()) << "Could not find a WebServer without SSL. Using one with SSL. This will not work with many clients."; } foreach (const QNetworkInterface &interface, QNetworkInterface::allInterfaces()) {