diff --git a/Core/src/org/sleuthkit/autopsy/modules/ileappanalyzer/ILeappAnalyzerIngestModule.java b/Core/src/org/sleuthkit/autopsy/modules/ileappanalyzer/ILeappAnalyzerIngestModule.java index 80baf4a25d..fafb8444b0 100644 --- a/Core/src/org/sleuthkit/autopsy/modules/ileappanalyzer/ILeappAnalyzerIngestModule.java +++ b/Core/src/org/sleuthkit/autopsy/modules/ileappanalyzer/ILeappAnalyzerIngestModule.java @@ -141,8 +141,8 @@ public class ILeappAnalyzerIngestModule implements DataSourceIngestModule { try { int result = ExecUtil.execute(iLeappCommand, new DataSourceIngestModuleProcessTerminator(context, true)); if (result != 0) { - logger.log(Level.SEVERE, String.format("Error running iLeapp, error code returned %d", result)); //NON-NLS - return ProcessResult.ERROR; + // ignore if there is an error and continue to try and process the next file if there is one + continue; } addILeappReportToReports(moduleOutputPath, currentCase);