From 53d687a740a443328f788acae5caa5318f100ad8 Mon Sep 17 00:00:00 2001 From: Richard Cordovano Date: Wed, 15 Feb 2017 17:46:40 -0500 Subject: [PATCH] Fix logging error message for PhotoRecCarver --- .../modules/photoreccarver/PhotoRecCarverOutputParser.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/org/sleuthkit/autopsy/modules/photoreccarver/PhotoRecCarverOutputParser.java b/Core/src/org/sleuthkit/autopsy/modules/photoreccarver/PhotoRecCarverOutputParser.java index ca42256063..01d19b84d1 100755 --- a/Core/src/org/sleuthkit/autopsy/modules/photoreccarver/PhotoRecCarverOutputParser.java +++ b/Core/src/org/sleuthkit/autopsy/modules/photoreccarver/PhotoRecCarverOutputParser.java @@ -157,7 +157,7 @@ class PhotoRecCarverOutputParser { } return fileManager.addCarvedFiles(new CarvingResult(af, carvedFiles)); } 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 empty = Collections.emptyList();