From f6ebe00d0ae5a63a184eeb705da8ebc90042d20d Mon Sep 17 00:00:00 2001 From: n00mkrad Date: Fri, 20 Aug 2021 13:41:56 +0200 Subject: [PATCH] Fixed minor print problem where the type was printed instead of the GPU name --- Code/OS/OSUtils.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/OS/OSUtils.cs b/Code/OS/OSUtils.cs index ad83544..f2d46ee 100644 --- a/Code/OS/OSUtils.cs +++ b/Code/OS/OSUtils.cs @@ -256,7 +256,7 @@ namespace Flowframes.OS if (property.Name == "Description") { gpus.Add(property.Value.ToString()); - Logger.Log("[GetGpus] Found GPU: " + gpus, true); + Logger.Log($"[GetGpus] Found GPU: {property.Value}", true); } } }