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