コード例 #1
0
ファイル: TraceHandler.cs プロジェクト: rarrarrarr/story
 public TraceHandler(string name, IStoryFormatter storyFormatter = null)
     : base(name)
 {
     this.storyFormatter = storyFormatter ?? StoryFormatters.GetBasicStoryFormatter();
 }
コード例 #2
0
ファイル: ConsoleHandler.cs プロジェクト: narratr/story
 public ConsoleHandler(string name, IStoryFormatter storyFormatter = null)
     : base(name)
 {
     this.storyFormatter = storyFormatter ?? StoryFormatters.GetBasicStoryFormatter();
 }
コード例 #3
0
 public TraceHandler(IStoryFormatter storyFormatter = null)
 {
     this.storyFormatter = storyFormatter ?? new DelimiterStoryFormatter(LogSeverity.Debug);
 }
コード例 #4
0
ファイル: ConsoleHandler.cs プロジェクト: amitapl/logmetry
 public ConsoleHandler(IStoryFormatter storyFormatter = null)
 {
     this.storyFormatter = storyFormatter ?? new DelimiterStoryFormatter(LogSeverity.Debug);
 }