Format Style Fixes

This commit is contained in:
sp-tarkov-bot
2025-12-24 14:33:24 +00:00
committed by Archangel
parent 54598e22bd
commit f9296b2ba4
+4 -2
View File
@@ -43,9 +43,11 @@ public class App(
logger.Debug($"RAM: {totalMemoryGb:F2} GB");
if (totalMemoryGb < 30)
{
logger.Warning($"Detected RAM ({totalMemoryGb:F2}GB) is smaller than recommended (32GB) you may experience crashes or reduced FPS on large maps");
logger.Warning(
$"Detected RAM ({totalMemoryGb:F2}GB) is smaller than recommended (32GB) you may experience crashes or reduced FPS on large maps"
);
}
logger.Debug($"Ran as admin: {Environment.IsPrivilegedProcess}");
logger.Debug($"CPU cores: {Environment.ProcessorCount}");
logger.Debug($"PATH: {(Environment.ProcessPath ?? "null returned").Encode(EncodeType.BASE64)}");