qnetconmon: Downgrade Warning to Debug

It triggers when connecting to localhost (or when using socks proxy) and
is nothing you can act on most of the time, so change it to qCDebug.

Change-Id: I669fbde4fa0ed194703ea6a4dab13790aa771852
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
This commit is contained in:
Mårten Nordheim 2020-08-26 12:38:12 +02:00
parent 174154bcac
commit 949254d5e4

View File

@ -92,7 +92,7 @@ QNetworkInterface getInterfaceFromHostAddress(const QHostAddress &local)
});
});
if (it == interfaces.cend()) {
qCWarning(lcNetMon, "Could not find the interface for the local address.");
qCDebug(lcNetMon, "Could not find the interface for the local address.");
return {};
}
return *it;