Merge pull request #5104 from rcordovano/kellykelly3-develop-merg

Replace write of stack trace to console with logging
This commit is contained in:
Richard Cordovano 2019-08-07 19:26:00 -04:00 committed by GitHub
commit dc613233a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
}
}