internal override void ToString(List <object> targets)
 {
     if (LogName == EventLog.Application)
     {
         targets.Add($"Log: {LogName.GetDescription()}, Source: {EventSource}, Type: {EventType}");
     }
     else
     {
         targets.Add($"Log: {LogName.GetDescription()}, Type: {EventType}");
     }
 }