chomp
6e4c7abf73
Co-authored-by: Alex <alex@dm-me-for-questions.com> Reviewed-on: SPT-AKI/LootDumpProcessor#6
16 lines
466 B
C#
16 lines
466 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;
|
|
} |