/// <summary>
 /// Initializes a new instance of the <see cref="EtwEventSourceTarget"/> class.
 /// </summary>
 public NLogEtwExtendedTarget()
 {
     EventSource = EtwLogger.Log;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="EtwEventSourceTarget"/> class.
 /// </summary>
 public NLogEtwExtendedTarget(INLogEventSource eventSource)
 {
     EventSource = eventSource;
 }