From eb13dea4fa2fc5c95ec852498307830b5f59d677 Mon Sep 17 00:00:00 2001 From: Matthew Date: Fri, 29 Nov 2024 19:06:40 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/src/main/cpp/PhoneDevice.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/src/main/cpp/PhoneDevice.cpp b/app/src/main/cpp/PhoneDevice.cpp index 48812724..f4f73619 100644 --- a/app/src/main/cpp/PhoneDevice.cpp +++ b/app/src/main/cpp/PhoneDevice.cpp @@ -3805,5 +3805,10 @@ void CPhoneDevice::SetStaticIp() if (m_network != NULL) { SetStaticIp(m_network->iface, m_network->ip, m_network->netmask, m_network->gateway); + XYLOG(XYLOG_SEVERITY_INFO, "Set Static IP on %s: %s", m_network->iface.c_str(), m_network->ip.c_str()); + } + else + { + XYLOG(XYLOG_SEVERITY_WARNING, "No Static IP Confg"); } }