コード例 #1
0
ファイル: LineFormatter.cs プロジェクト: aka-STInG/XLog
 public LineFormatter(
     ICategoryFormatter categoryFormatter = null,
     bool doAsyncExceptionCleanup         = true)
 {
     _categoryFormatter       = categoryFormatter;
     _doAsyncExceptionCleanup = doAsyncExceptionCleanup;
 }
コード例 #2
0
ファイル: LineFormatter.cs プロジェクト: Belorus/XLog
 public LineFormatter(
     ICategoryFormatter categoryFormatter = null, 
     bool doAsyncExceptionCleanup = true,
     LineEnding lineEnding = LineEnding.CRLF)
 {
     _categoryFormatter = categoryFormatter;
     _doAsyncExceptionCleanup = doAsyncExceptionCleanup;
     _lineEnding = lineEnding;
 }
コード例 #3
0
ファイル: LineFormatter.cs プロジェクト: canicelebrate/XLog
 public LineFormatter(
     ICategoryFormatter categoryFormatter = null,
     bool doAsyncExceptionCleanup         = true,
     LineEnding lineEnding = LineEnding.CRLF)
 {
     _categoryFormatter       = categoryFormatter;
     _doAsyncExceptionCleanup = doAsyncExceptionCleanup;
     _lineEnding = lineEnding;
 }
コード例 #4
0
 public SyslogFormatter(
     string uniqueId,
     string applicationName,
     ICategoryFormatter categoryFormatter = null,
     bool doAsyncExceptionCleanup         = true)
 {
     _uniqueId                = uniqueId;
     _applicationName         = applicationName;
     _categoryFormatter       = categoryFormatter;
     _doAsyncExceptionCleanup = doAsyncExceptionCleanup;
 }
コード例 #5
0
ファイル: SlowLineFormatter.cs プロジェクト: Belorus/XLog
 public SlowLineFormatter(ICategoryFormatter categoryFormatter = null, bool doAsyncExceptionCleanup = true)
 {
     _categoryFormatter = categoryFormatter;
     _doAsyncExceptionCleanup = doAsyncExceptionCleanup;
 }