public static void WriteToStandardOutput(EventEntry entry)
 {
     XmlTextWriter xmlWriter = new XmlTextWriter(Console.Out);
     xmlWriter.Formatting = Formatting.Indented;
     xmlWriter.Indentation = 2;
     entry.SaveToXml(xmlWriter);
     xmlWriter.Flush();
 }