From 8070b60dbe442fab19fc709411919a9b3c22bf2f Mon Sep 17 00:00:00 2001 From: Richard Cordovano Date: Mon, 7 Apr 2014 09:54:05 -0400 Subject: [PATCH] Removed logging start of ingest of each file --- Core/src/org/sleuthkit/autopsy/ingest/FileIngestPipeline.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/ingest/FileIngestPipeline.java b/Core/src/org/sleuthkit/autopsy/ingest/FileIngestPipeline.java index dac583bd4f..61319f441e 100755 --- a/Core/src/org/sleuthkit/autopsy/ingest/FileIngestPipeline.java +++ b/Core/src/org/sleuthkit/autopsy/ingest/FileIngestPipeline.java @@ -82,8 +82,6 @@ final class FileIngestPipeline { List process(AbstractFile file) { List errors = new ArrayList<>(); - Content dataSource = this.job.getDataSource(); - logger.log(Level.INFO, String.format("Processing {0} from {1}", file.getName(), dataSource.getName())); for (FileIngestModuleDecorator module : this.modules) { try { module.process(file);