From 136d98ad79d5a639fa7c5ad9e1170b6feade246c Mon Sep 17 00:00:00 2001 From: Richard Cordovano Date: Wed, 7 Aug 2019 19:22:47 -0400 Subject: [PATCH] Replace write of stack trace to console with logging --- .../dataSourceIntegrity/DataSourceIntegrityIngestModule.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/org/sleuthkit/autopsy/modules/dataSourceIntegrity/DataSourceIntegrityIngestModule.java b/Core/src/org/sleuthkit/autopsy/modules/dataSourceIntegrity/DataSourceIntegrityIngestModule.java index 250aab712d..7b0fa53c99 100644 --- a/Core/src/org/sleuthkit/autopsy/modules/dataSourceIntegrity/DataSourceIntegrityIngestModule.java +++ b/Core/src/org/sleuthkit/autopsy/modules/dataSourceIntegrity/DataSourceIntegrityIngestModule.java @@ -303,7 +303,7 @@ public class DataSourceIntegrityIngestModule implements DataSourceIngestModule { } catch (TskCoreException ex) { logger.log(Level.SEVERE, "Error creating verification failed artifact", ex); } catch (Blackboard.BlackboardException ex) { - Exceptions.printStackTrace(ex); + logger.log(Level.SEVERE, "Error posting verification failed artifact", ex); } }