mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-31 01:59:59 -06:00
misc: chore: Prefix OS, CPU, and RAM lines with the same method name as other system info prints.
This commit is contained in:
@ -24,9 +24,9 @@ namespace Ryujinx.Ava.Utilities.SystemInfo
|
|||||||
|
|
||||||
public void Print()
|
public void Print()
|
||||||
{
|
{
|
||||||
Logger.Notice.Print(LogClass.Application, $"Operating System: {OsDescription}");
|
Logger.Notice.Print(LogClass.Application, $"Operating System: {OsDescription}", "PrintSystemInfo");
|
||||||
Logger.Notice.Print(LogClass.Application, $"CPU: {CpuName}");
|
Logger.Notice.Print(LogClass.Application, $"CPU: {CpuName}", "PrintSystemInfo");
|
||||||
Logger.Notice.Print(LogClass.Application, $"RAM: Total {ToGBString(RamTotal)} ; Available {ToGBString(RamAvailable)}");
|
Logger.Notice.Print(LogClass.Application, $"RAM: Total {ToGBString(RamTotal)} ; Available {ToGBString(RamAvailable)}", "PrintSystemInfo");
|
||||||
}
|
}
|
||||||
|
|
||||||
public static SystemInfo Gather()
|
public static SystemInfo Gather()
|
||||||
|
Reference in New Issue
Block a user