From ceb80d6612e12477a18f84f9a33e0961084e4260 Mon Sep 17 00:00:00 2001 From: sp-tarkov-bot Date: Wed, 24 Dec 2025 14:33:24 +0000 Subject: [PATCH] Format Style Fixes --- Libraries/SPTarkov.Server.Core/Utils/App.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Libraries/SPTarkov.Server.Core/Utils/App.cs b/Libraries/SPTarkov.Server.Core/Utils/App.cs index 79381d2d..008ac5ff 100644 --- a/Libraries/SPTarkov.Server.Core/Utils/App.cs +++ b/Libraries/SPTarkov.Server.Core/Utils/App.cs @@ -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)}");