Dreamine.Logging 1.0.2
Dreamine.Logging 프로젝트의 API와 구성 요소를 제공합니다.
로딩중...
검색중...
일치하는것 없음
DreamineLoggingOptions.cs
이 파일의 문서화 페이지로 가기
1using System;
2
4
13public sealed class DreamineLoggingOptions
14{
23 public string Category { get; set; } = "Dreamine";
24
33 public string LogDirectory { get; set; } =
34 System.IO.Path.Combine(AppContext.BaseDirectory, "Logs");
35
44 public int StoreCapacity { get; set; } = 1000;
45
54 public int QueueCapacity { get; set; } = 8192;
55
64 public int DrainBatchSize { get; set; } = 256;
65
74 public int FlushEveryWriteCount { get; set; } = 20;
75
84 public TimeSpan ShutdownTimeout { get; set; } = TimeSpan.FromSeconds(2);
85}