From 708dd975df875a140dac5510b3c177ecdcbbb50f Mon Sep 17 00:00:00 2001 From: Richard Cordovano Date: Thu, 10 Apr 2014 17:19:34 -0400 Subject: [PATCH] Fixed incorrect auto-format of Firefox(Extracter) log messages --- .../src/org/sleuthkit/autopsy/recentactivity/Firefox.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/Firefox.java b/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/Firefox.java index 1f0f710dcc..9b746aa770 100644 --- a/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/Firefox.java +++ b/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/Firefox.java @@ -121,7 +121,7 @@ class Firefox extends Extract { break; } List> tempList = this.dbConnect(temps, historyQuery); - logger.log(Level.INFO, "{0}- Now getting history from {1} with {2}artifacts identified.", new Object[]{moduleName, temps, tempList.size()}); + logger.log(Level.INFO, "{0}- Now getting history from {1} with {2} artifacts identified.", new Object[]{moduleName, temps, tempList.size()}); for (HashMap result : tempList) { Collection bbattributes = new ArrayList<>(); bbattributes.add(new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_URL.getTypeID(), @@ -202,7 +202,7 @@ class Firefox extends Extract { break; } List> tempList = this.dbConnect(temps, bookmarkQuery); - logger.log(Level.INFO, "{0}- Now getting bookmarks from {1} with {2}artifacts identified.", new Object[]{moduleName, temps, tempList.size()}); + logger.log(Level.INFO, "{0}- Now getting bookmarks from {1} with {2} artifacts identified.", new Object[]{moduleName, temps, tempList.size()}); for (HashMap result : tempList) { Collection bbattributes = new ArrayList<>(); @@ -290,7 +290,7 @@ class Firefox extends Extract { } List> tempList = this.dbConnect(temps, query); - logger.log(Level.INFO, "{0}- Now getting cookies from {1} with {2}artifacts identified.", new Object[]{moduleName, temps, tempList.size()}); + logger.log(Level.INFO, "{0}- Now getting cookies from {1} with {2} artifacts identified.", new Object[]{moduleName, temps, tempList.size()}); for (HashMap result : tempList) { Collection bbattributes = new ArrayList<>(); @@ -501,7 +501,7 @@ class Firefox extends Extract { List> tempList = this.dbConnect(temps, downloadQueryVersion24); - logger.log(Level.INFO, "{0}- Now getting downloads from {1} with {2}artifacts identified.", new Object[]{moduleName, temps, tempList.size()}); + logger.log(Level.INFO, "{0}- Now getting downloads from {1} with {2} artifacts identified.", new Object[]{moduleName, temps, tempList.size()}); for (HashMap result : tempList) { Collection bbattributes = new ArrayList<>();