Allow event logging to be disabled

This commit is contained in:
Loporrit
2025-02-09 05:21:51 +00:00
parent e8ae2a6152
commit 6f88ed1ea5
4 changed files with 17 additions and 9 deletions

View File

@@ -21,6 +21,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 LogEvents { get; set; } = true;
public double MaxLocalCacheInGiB { get; set; } = 20;
public bool OpenGposeImportOnGposeStart { get; set; } = false;
public bool OpenPopupOnAdd { get; set; } = true;