fix log message

This commit is contained in:
adam-m 2012-08-16 14:44:58 -04:00
parent b9caa40115
commit 63d6c9dd74

View File

@ -48,7 +48,7 @@ public class PlatformUtil {
File jrePath = new File(rootPath.getAbsolutePath() + File.separator + "jre6"); File jrePath = new File(rootPath.getAbsolutePath() + File.separator + "jre6");
if (jrePath != null && jrePath.exists() && jrePath.isDirectory()) { 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"; javaPath = jrePath.getAbsolutePath() + File.separator + "bin" + File.separator + "java";
} }
else { else {