From 1a8f3bcfb97b1c7f0d39a0e4a7b6a7d971622b85 Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Tue, 7 Jan 2025 17:18:33 -0500 Subject: [PATCH] refactor message; --- src/host/modem/port/specialized/V24UDPPort.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/host/modem/port/specialized/V24UDPPort.cpp b/src/host/modem/port/specialized/V24UDPPort.cpp index efcdc0bc..38166201 100644 --- a/src/host/modem/port/specialized/V24UDPPort.cpp +++ b/src/host/modem/port/specialized/V24UDPPort.cpp @@ -147,7 +147,7 @@ void V24UDPPort::clock(uint32_t ms) m_timeoutTimer.clock(ms); if (m_timeoutTimer.isRunning() && m_timeoutTimer.hasExpired()) { - LogError(LOG_NET, "PEER %u connection to the DFSI endpoint has timed out, disconnected"); + LogError(LOG_NET, "DFSI connection to the remote endpoint has timed out, disconnected"); m_reqConnectionTimer.stop(); m_reqConnectionToPeer = true; m_establishedConnection = false;