Skip to content
Permalink
Browse files
Merge pull request #8533 from delroth/notice-logs
DualShockUDPClient: downgrade spurious NOTICE_LOGs
  • Loading branch information
delroth committed Dec 23, 2019
2 parents 8a50d9c + 5c996de commit 02680ef
Showing 1 changed file with 4 additions and 4 deletions.
@@ -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"; });

0 comments on commit 02680ef

Please sign in to comment.