/// <summary>
 /// Initialize a new instance of a <see cref="LogFilterHelper"/> class.  Registers each ILogFilter.
 /// </summary>
 /// <param name="filters">The instances of <see cref="ILogFilter"/> to aggregate.</param>
 /// <param name="handler">The handler to deal with errors during filter checking.</param>
 public LogFilterHelper(IEnumerable <ILogFilter> filters, ILogFilterErrorHandler handler)
 {
     this.filters = filters;
     this.handler = handler;
 }
 /// <summary>
 /// Initialize a new instance of a <see cref="LogFilterHelper"/> class.  Registers each ILogFilter.
 /// </summary>
 /// <param name="filters">The instances of <see cref="ILogFilter"/> to aggregate.</param>
 /// <param name="handler">The handler to deal with errors during filter checking.</param>
 public LogFilterHelper(ICollection <ILogFilter> filters, ILogFilterErrorHandler handler)
 {
     this.filters = filters;
     this.handler = handler;
 }