PluralKit/PluralKit.Core/CoreConfig.cs

18 lines
620 B
C#
Raw Normal View History

using Serilog.Events;
namespace PluralKit.Core
{
public class CoreConfig
{
public string Database { get; set; }
2019-07-15 19:02:50 +00:00
public string SentryUrl { get; set; }
2019-07-16 21:34:22 +00:00
public string InfluxUrl { get; set; }
public string InfluxDb { get; set; }
2019-07-18 15:13:42 +00:00
public string LogDir { get; set; }
2021-06-10 12:21:05 +00:00
public string? ElasticUrl { get; set; }
2020-06-13 20:39:19 +00:00
public LogEventLevel ConsoleLogLevel { get; set; } = LogEventLevel.Debug;
2021-06-10 12:21:05 +00:00
public LogEventLevel ElasticLogLevel { get; set; } = LogEventLevel.Information;
public LogEventLevel FileLogLevel { get; set; } = LogEventLevel.Information;
}
}