From 963a9ab421d0c62f29b908184bbed0b6356a02df Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Fri, 30 Jun 2023 22:50:43 -0400 Subject: [PATCH] fix warning message when failing to update status; --- src/monitor/NodeStatusWnd.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/monitor/NodeStatusWnd.h b/src/monitor/NodeStatusWnd.h index 28549b02..7f25e346 100644 --- a/src/monitor/NodeStatusWnd.h +++ b/src/monitor/NodeStatusWnd.h @@ -399,8 +399,7 @@ private: } } catch (std::exception&) { - ::LogWarning(LOG_HOST, "%s:%u, failed to properly handle status"); - m_failed = true; + ::LogWarning(LOG_HOST, "%s:%u, failed to properly handle status", m_chData.address().c_str(), m_chData.port()); } } }