您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
37 行
761 B
37 行
761 B
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Web; |
|
|
|
namespace Teknik.Configuration |
|
{ |
|
public class LoggingConfig |
|
{ |
|
public bool Enabled { get; set; } |
|
|
|
public string OutputDirectory { get; set; } |
|
|
|
public string LogLevel { get; set; } |
|
|
|
public bool RotateLogs { get; set; } |
|
|
|
public long MaxSize { get; set; } |
|
|
|
public int MaxCount { get; set; } |
|
|
|
public LoggingConfig() |
|
{ |
|
SetDefaults(); |
|
} |
|
|
|
public void SetDefaults() |
|
{ |
|
Enabled = true; |
|
OutputDirectory = string.Empty; |
|
LogLevel = "Info"; |
|
RotateLogs = false; |
|
MaxSize = -1; |
|
MaxCount = -1; |
|
} |
|
} |
|
} |