mirror of
https://github.com/sp-tarkov/loot-dump-processor.git
synced 2025-02-13 02:30:45 -05:00
16 lines
469 B
C#
16 lines
469 B
C#
using System.Text.Json.Serialization;
|
|
using LootDumpProcessor.Logger;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace LootDumpProcessor.Model.Config;
|
|
|
|
public class LoggerConfig
|
|
{
|
|
[JsonProperty("logLevel")]
|
|
[JsonPropertyName("logLevel")]
|
|
public LogLevel LogLevel { get; set; } = LogLevel.Info;
|
|
|
|
[JsonProperty("queueLoggerPoolingTimeoutMs")]
|
|
[JsonPropertyName("queueLoggerPoolingTimeoutMs")]
|
|
public int QueueLoggerPoolingTimeoutMs { get; set; } = 1000;
|
|
} |