/// <summary>
 /// Initializes a new instance of the <see cref="JsonEventTextFormatter" /> class.
 /// </summary>
 /// <param name="formatting">The <see cref="EventTextFormatting" /> formatting.</param>
 /// <param name="dateTimeFormat">The date time format used for timestamp value.</param>
 public JsonEventTextFormatter(EventTextFormatting formatting = DefaultEventTextFormatting, string dateTimeFormat = null)
 {
     this.formatting            = (Transformalize.Libs.Newtonsoft.Json.Formatting)formatting;
     this.DateTimeFormat        = dateTimeFormat;
     this.IncludeEntrySeparator = true;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="JsonEventTextFormatter" /> class.
 /// </summary>
 /// <param name="formatting">The <see cref="EventTextFormatting" /> formatting.</param>
 /// <param name="dateTimeFormat">The date time format used for timestamp value.</param>
 public JsonEventTextFormatter(EventTextFormatting formatting = DefaultEventTextFormatting, string dateTimeFormat = null)
 {
     this.formatting = (Transformalize.Libs.Newtonsoft.Json.Formatting)formatting;
     this.DateTimeFormat = dateTimeFormat;
     this.IncludeEntrySeparator = true;
 }