2020-06-13 18:31:20 +02:00
|
|
|
using Serilog.Events;
|
|
|
|
|
2020-02-12 15:16:19 +01:00
|
|
|
namespace PluralKit.Core
|
2019-05-08 20:08:56 +02:00
|
|
|
{
|
|
|
|
public class CoreConfig
|
|
|
|
{
|
|
|
|
public string Database { get; set; }
|
2019-07-15 21:02:50 +02:00
|
|
|
public string SentryUrl { get; set; }
|
2019-07-16 23:34:22 +02:00
|
|
|
public string InfluxUrl { get; set; }
|
|
|
|
public string InfluxDb { get; set; }
|
2019-07-18 17:13:42 +02:00
|
|
|
public string LogDir { get; set; }
|
2020-08-26 22:29:24 +02:00
|
|
|
public string ElasticUrl { get; set; }
|
2020-06-13 18:31:20 +02:00
|
|
|
|
2020-06-13 22:39:19 +02:00
|
|
|
public LogEventLevel ConsoleLogLevel { get; set; } = LogEventLevel.Debug;
|
2020-06-13 18:31:20 +02:00
|
|
|
public LogEventLevel FileLogLevel { get; set; } = LogEventLevel.Information;
|
2019-05-08 20:08:56 +02:00
|
|
|
}
|
|
|
|
}
|