Disable trace logging by default

This commit is contained in:
Loporrit
2025-08-23 08:27:08 +00:00
parent 2168fa91ce
commit 1768d68df2
4 changed files with 36 additions and 2 deletions

View File

@@ -29,6 +29,7 @@ public class MareConfig : IMareConfiguration
public bool InitialScanComplete { get; set; } = false;
public LogLevel LogLevel { get; set; } = LogLevel.Information;
public bool LogPerformance { get; set; } = false;
public bool LogTraceLog { get; set; } = false;
public bool LogEvents { get; set; } = true;
public bool HoldCombatApplication { get; set; } = false;
public double MaxLocalCacheInGiB { get; set; } = 20;