Example #1
0
 public TraceHandler(string name, IStoryFormatter storyFormatter = null)
     : base(name)
 {
     this.storyFormatter = storyFormatter ?? StoryFormatters.GetBasicStoryFormatter();
 }
Example #2
0
 public ConsoleHandler(string name, IStoryFormatter storyFormatter = null)
     : base(name)
 {
     this.storyFormatter = storyFormatter ?? StoryFormatters.GetBasicStoryFormatter();
 }
Example #3
0
 public TraceHandler(IStoryFormatter storyFormatter = null)
 {
     this.storyFormatter = storyFormatter ?? new DelimiterStoryFormatter(LogSeverity.Debug);
 }
Example #4
0
 public ConsoleHandler(IStoryFormatter storyFormatter = null)
 {
     this.storyFormatter = storyFormatter ?? new DelimiterStoryFormatter(LogSeverity.Debug);
 }