diff --git a/Core/src/org/sleuthkit/autopsy/ingest/DataSourceIngestJob.java b/Core/src/org/sleuthkit/autopsy/ingest/DataSourceIngestJob.java index 674f8488af..22745a3c54 100644 --- a/Core/src/org/sleuthkit/autopsy/ingest/DataSourceIngestJob.java +++ b/Core/src/org/sleuthkit/autopsy/ingest/DataSourceIngestJob.java @@ -1082,7 +1082,7 @@ public final class DataSourceIngestJob { * * @param level The logging level for the message. * @param message The message. - * @param throwable The error associated with the error, may be null. + * @param throwable The throwable associated with the error. */ private void logErrorMessage(Level level, String message, Throwable throwable) { logger.log(level, String.format("%s (data source = %s, objId = %d, jobId = %d)", message, dataSource.getName(), dataSource.getId(), id), throwable); //NON-NLS @@ -1094,7 +1094,6 @@ public final class DataSourceIngestJob { * * @param level The logging level for the message. * @param message The message. - * @param ex The exception associated with the error. */ private void logErrorMessage(Level level, String message) { logger.log(level, String.format("%s (data source = %s, objId = %d, jobId = %d)", message, dataSource.getName(), dataSource.getId(), id)); //NON-NLS