From 5272ab8b9c0db83d57b36e266ff848a9ba25677e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20St=C3=BCrz?= Date: Mon, 3 Oct 2022 11:18:23 +0200 Subject: [PATCH] Add information instructions to bug report request message. --- .../hardware/network/networkdevicediscoveryreplyimpl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libnymea-core/hardware/network/networkdevicediscoveryreplyimpl.cpp b/libnymea-core/hardware/network/networkdevicediscoveryreplyimpl.cpp index ec644bf3..493885b5 100644 --- a/libnymea-core/hardware/network/networkdevicediscoveryreplyimpl.cpp +++ b/libnymea-core/hardware/network/networkdevicediscoveryreplyimpl.cpp @@ -240,7 +240,7 @@ void NetworkDeviceDiscoveryReplyImpl::verifyComplete(const MacAddress &macAddres if (m_networkDeviceCache[macAddress].isComplete() && m_networkDeviceCache[macAddress].isValid()) { if (m_networkDeviceInfos.hasMacAddress(macAddress)) { if (m_networkDeviceInfos.get(macAddress) != m_networkDeviceCache.value(macAddress)) { - qCWarning(dcNetworkDeviceDiscovery()) << "Already complete network device info changed during discovery process! Please report a bug if you see this message."; + qCWarning(dcNetworkDeviceDiscovery()) << "Already complete network device info changed during discovery process! Please report a bug if you see this message containing following 2 lines:"; qCWarning(dcNetworkDeviceDiscovery()) << m_networkDeviceInfos.get(macAddress); qCWarning(dcNetworkDeviceDiscovery()) << m_networkDeviceCache.value(macAddress); }