From 9075a3960bf17d7f3ee029c14fd185a0edffefe6 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Thu, 30 Jan 2025 20:18:26 -0600 Subject: [PATCH] misc: chore: Prefix OS, CPU, and RAM lines with the same method name as other system info prints. --- src/Ryujinx/Utilities/SystemInfo/SystemInfo.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Ryujinx/Utilities/SystemInfo/SystemInfo.cs b/src/Ryujinx/Utilities/SystemInfo/SystemInfo.cs index 0d45c52f2..aa7094ec7 100644 --- a/src/Ryujinx/Utilities/SystemInfo/SystemInfo.cs +++ b/src/Ryujinx/Utilities/SystemInfo/SystemInfo.cs @@ -24,9 +24,9 @@ namespace Ryujinx.Ava.Utilities.SystemInfo public void Print() { - Logger.Notice.Print(LogClass.Application, $"Operating System: {OsDescription}"); - Logger.Notice.Print(LogClass.Application, $"CPU: {CpuName}"); - Logger.Notice.Print(LogClass.Application, $"RAM: Total {ToGBString(RamTotal)} ; Available {ToGBString(RamAvailable)}"); + Logger.Notice.Print(LogClass.Application, $"Operating System: {OsDescription}", "PrintSystemInfo"); + Logger.Notice.Print(LogClass.Application, $"CPU: {CpuName}", "PrintSystemInfo"); + Logger.Notice.Print(LogClass.Application, $"RAM: Total {ToGBString(RamTotal)} ; Available {ToGBString(RamAvailable)}", "PrintSystemInfo"); } public static SystemInfo Gather()