From 63d6c9dd74ee1e41d85dad2d871abba7df48009c Mon Sep 17 00:00:00 2001 From: adam-m Date: Thu, 16 Aug 2012 14:44:58 -0400 Subject: [PATCH] fix log message --- CoreUtils/src/org/sleuthkit/autopsy/coreutils/PlatformUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CoreUtils/src/org/sleuthkit/autopsy/coreutils/PlatformUtil.java b/CoreUtils/src/org/sleuthkit/autopsy/coreutils/PlatformUtil.java index 7518a25f6f..cedf3133ef 100644 --- a/CoreUtils/src/org/sleuthkit/autopsy/coreutils/PlatformUtil.java +++ b/CoreUtils/src/org/sleuthkit/autopsy/coreutils/PlatformUtil.java @@ -48,7 +48,7 @@ public class PlatformUtil { File jrePath = new File(rootPath.getAbsolutePath() + File.separator + "jre6"); if (jrePath != null && jrePath.exists() && jrePath.isDirectory()) { - logger.log(Level.INFO, "Embedded jre6 directory not found in: " + jrePath.getAbsolutePath()); + logger.log(Level.INFO, "Embedded jre6 directory found in: " + jrePath.getAbsolutePath()); javaPath = jrePath.getAbsolutePath() + File.separator + "bin" + File.separator + "java"; } else {