From 949254d5e4f9551aac5af2dbae5dc5dfcedd6235 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5rten=20Nordheim?= Date: Wed, 26 Aug 2020 12:38:12 +0200 Subject: [PATCH] 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 Reviewed-by: Alex Blasche --- src/network/kernel/qnetconmonitor_win.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/network/kernel/qnetconmonitor_win.cpp b/src/network/kernel/qnetconmonitor_win.cpp index da38bf695c1..bf771f94515 100644 --- a/src/network/kernel/qnetconmonitor_win.cpp +++ b/src/network/kernel/qnetconmonitor_win.cpp @@ -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;