From 5c996dec8973500e603d26b43deac2d65fc71c50 Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Mon, 23 Dec 2019 18:36:18 +0100 Subject: [PATCH] DualShockUDPClient: downgrade spurious NOTICE_LOGs --- .../DualShockUDPClient/DualShockUDPClient.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Core/InputCommon/ControllerInterface/DualShockUDPClient/DualShockUDPClient.cpp b/Source/Core/InputCommon/ControllerInterface/DualShockUDPClient/DualShockUDPClient.cpp index 3651deeada..913e03db2b 100644 --- a/Source/Core/InputCommon/ControllerInterface/DualShockUDPClient/DualShockUDPClient.cpp +++ b/Source/Core/InputCommon/ControllerInterface/DualShockUDPClient/DualShockUDPClient.cpp @@ -166,7 +166,7 @@ static sf::Socket::Status ReceiveWithTimeout(sf::UdpSocket& socket, void* data, static void HotplugThreadFunc() { Common::SetCurrentThreadName("DualShockUDPClient Hotplug Thread"); - NOTICE_LOG(SERIALINTERFACE, "DualShockUDPClient hotplug thread started"); + INFO_LOG(SERIALINTERFACE, "DualShockUDPClient hotplug thread started"); while (s_hotplug_thread_running.IsSet()) { @@ -211,7 +211,7 @@ static void HotplugThreadFunc() } } } - NOTICE_LOG(SERIALINTERFACE, "DualShockUDPClient hotplug thread stopped"); + INFO_LOG(SERIALINTERFACE, "DualShockUDPClient hotplug thread stopped"); } static void StartHotplugThread() @@ -241,7 +241,7 @@ static void StopHotplugThread() static void Restart() { - NOTICE_LOG(SERIALINTERFACE, "DualShockUDPClient Restart"); + INFO_LOG(SERIALINTERFACE, "DualShockUDPClient Restart"); StopHotplugThread(); @@ -281,7 +281,7 @@ void Init() void PopulateDevices() { - NOTICE_LOG(SERIALINTERFACE, "DualShockUDPClient PopulateDevices"); + INFO_LOG(SERIALINTERFACE, "DualShockUDPClient PopulateDevices"); g_controller_interface.RemoveDevice( [](const auto* dev) { return dev->GetSource() == "DSUClient"; });