2020-06-13 16:31:20 +00:00
|
|
|
using Serilog.Events;
|
|
|
|
|
2020-02-12 14:16:19 +00:00
|
|
|
namespace PluralKit.Core
|
2019-05-08 18:08:56 +00:00
|
|
|
{
|
|
|
|
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; }
|
2020-08-26 20:29:24 +00:00
|
|
|
public string ElasticUrl { get; set; }
|
2020-06-13 16:31:20 +00:00
|
|
|
|
2020-06-13 20:39:19 +00:00
|
|
|
public LogEventLevel ConsoleLogLevel { get; set; } = LogEventLevel.Debug;
|
2020-06-13 16:31:20 +00:00
|
|
|
public LogEventLevel FileLogLevel { get; set; } = LogEventLevel.Information;
|
2019-05-08 18:08:56 +00:00
|
|
|
}
|
|
|
|
}
|