mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-05-12 19:41:03 +08:00
8 lines
193 B
C#
8 lines
193 B
C#
namespace Foxel.Services.Logging;
|
|
|
|
public class DatabaseLoggerConfiguration
|
|
{
|
|
public LogLevel MinLevel { get; set; } = LogLevel.Information;
|
|
public bool Enabled { get; set; } = true;
|
|
}
|