Merge pull request #6942 from markmckinnon/7450-Missing-database-table-error-during-prefetch-file-parsing

7450-Missing-database-table-error-during-prefetch-file-parsing
This commit is contained in:
Richard Cordovano 2021-04-29 12:40:02 -04:00 committed by GitHub
commit a27d0d8c27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -332,7 +332,8 @@ final class ExtractPrefetch extends Extract {
}
} catch (SQLException ex) {
logger.log(Level.SEVERE, "Error while trying to read into a sqlite db.", ex);//NON-NLS
logger.log(Level.WARNING, String.format("Error while trying to read into a sqlite db %s.", prefetchDb));//NON-NLS
logger.log(Level.WARNING, ex.getMessage());
}
if (!blkBrdArtList.isEmpty() && !context.dataSourceIngestIsCancelled()) {