private bool Matches(ILogFileIssuesPlugin plugin, ILogFileFormat format)
 {
     try
     {
         return(plugin.SupportedFormats.Any(x => Equals(x, format)));
     }
     catch (Exception e)
     {
         Log.ErrorFormat("Caught unexpected exception: {0}", e);
         return(false);
     }
 }
 public NoThrowLogFileIssuePlugin(ILogFileIssuesPlugin inner)
 {
     _inner = inner;
 }