--- old/src/java.logging/share/classes/java/util/logging/LogManager.java 2014-11-20 16:03:29.346879716 +0000 +++ new/src/java.logging/share/classes/java/util/logging/LogManager.java 2014-11-20 16:03:29.181868546 +0000 @@ -78,7 +78,7 @@ *

* If neither of these properties is defined then the LogManager uses its * default configuration. The default configuration is typically loaded from the - * properties file "{@code lib/logging.properties}" in the Java installation + * properties file "{@code conf/logging.properties}" in the Java installation * directory. *

* The properties for loggers and Handlers will have names starting @@ -1210,7 +1210,7 @@ if (fname == null) { throw new Error("Can't find java.home ??"); } - File f = new File(fname, "lib"); + File f = new File(fname, "conf"); f = new File(f, "logging.properties"); fname = f.getCanonicalPath(); }