소스 검색

misc: chore: Prefix OS, CPU, and RAM lines with the same method name as other system info prints.

Evan Husted 1 년 전
부모
커밋
9075a3960b
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      src/Ryujinx/Utilities/SystemInfo/SystemInfo.cs

+ 3 - 3
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()