Fix logging error message for PhotoRecCarver

This commit is contained in:
Richard Cordovano 2017-02-15 17:46:40 -05:00
parent 996031e340
commit 53d687a740

View File

@ -157,7 +157,7 @@ class PhotoRecCarverOutputParser {
} }
return fileManager.addCarvedFiles(new CarvingResult(af, carvedFiles)); return fileManager.addCarvedFiles(new CarvingResult(af, carvedFiles));
} catch (NumberFormatException | TskCoreException ex) { } catch (NumberFormatException | TskCoreException ex) {
logger.log(Level.SEVERE, "Error parsing PhotoRec output and inserting it into the database: {0}", ex); //NON-NLS logger.log(Level.SEVERE, "Error parsing PhotoRec output and inserting it into the database", ex); //NON-NLS
} }
List<LayoutFile> empty = Collections.emptyList(); List<LayoutFile> empty = Collections.emptyList();