mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-24 06:47:44 +02:00
misc: chore: Prefix OS, CPU, and RAM lines with the same method name as other system info prints.
This commit is contained in:
parent
3cf54987d2
commit
9075a3960b
1 changed files with 3 additions and 3 deletions
|
@ -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()
|
||||||
|
|
Loading…
Add table
Reference in a new issue