From 5facc0c07f8a3f6fd0f39229044fe120501162a7 Mon Sep 17 00:00:00 2001 From: Ac_K Date: Mon, 13 Jan 2020 01:21:54 +0100 Subject: Name all threads (#886) * Name all threads Close #874 * use ThreadName instead of ThreadId in Logging --- Ryujinx.Common/Logging/Targets/AsyncLogTargetWrapper.cs | 1 + 1 file changed, 1 insertion(+) (limited to 'Ryujinx.Common/Logging/Targets/AsyncLogTargetWrapper.cs') diff --git a/Ryujinx.Common/Logging/Targets/AsyncLogTargetWrapper.cs b/Ryujinx.Common/Logging/Targets/AsyncLogTargetWrapper.cs index c946b678..43c62d31 100644 --- a/Ryujinx.Common/Logging/Targets/AsyncLogTargetWrapper.cs +++ b/Ryujinx.Common/Logging/Targets/AsyncLogTargetWrapper.cs @@ -57,6 +57,7 @@ namespace Ryujinx.Common.Logging } }); + _messageThread.Name = "Logger.MessageThread"; _messageThread.IsBackground = true; _messageThread.Start(); } -- cgit v1.2.3