public TraceHandler(string name, IStoryFormatter storyFormatter = null) : base(name) { this.storyFormatter = storyFormatter ?? StoryFormatters.GetBasicStoryFormatter(); }
public ConsoleHandler(string name, IStoryFormatter storyFormatter = null) : base(name) { this.storyFormatter = storyFormatter ?? StoryFormatters.GetBasicStoryFormatter(); }
public TraceHandler(IStoryFormatter storyFormatter = null) { this.storyFormatter = storyFormatter ?? new DelimiterStoryFormatter(LogSeverity.Debug); }
public ConsoleHandler(IStoryFormatter storyFormatter = null) { this.storyFormatter = storyFormatter ?? new DelimiterStoryFormatter(LogSeverity.Debug); }