From c00705f9a41208f422e6908904d2d1b37f5ac241 Mon Sep 17 00:00:00 2001 From: PTRCoder Date: Sat, 24 Aug 2024 14:34:38 +0200 Subject: [PATCH] Added log message for checking MAC address --- src/core/hle/service/nwm/nwm_uds.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/hle/service/nwm/nwm_uds.cpp b/src/core/hle/service/nwm/nwm_uds.cpp index 244a6c36c..962e68aad 100644 --- a/src/core/hle/service/nwm/nwm_uds.cpp +++ b/src/core/hle/service/nwm/nwm_uds.cpp @@ -594,6 +594,7 @@ void NWM_UDS::RecvBeaconBroadcastData(Kernel::HLERequestContext& ctx) { MacAddress mac_address; rp.PopRaw(mac_address); + LOG_WARNING(Service_NWM, "MAC: {}", std::string str(std::begin(mac_address), std::end(mac_address))); rp.Skip(9, false);