public static ConsoleLogEntry FromAppleLogEntry(AppleLogEntry appleEntry)
 {
     return new ConsoleLogEntry()
     {
          Format = appleEntry.Format,
          Message = appleEntry.Message
     };
 }
 public static ConsoleLogEntry FromAppleLogEntry(AppleLogEntry appleEntry)
 {
     return(new ConsoleLogEntry()
     {
         Format = appleEntry.Format,
         Message = appleEntry.Message
     });
 }