src/java.logging/share/classes/java/util/logging/LogManager.java

Print this page

        

*** 76,86 **** * to specify a properties file (in java.util.Properties format). The * initial logging configuration will be read from this file. * <p> * 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 * directory. * <p> * The properties for loggers and Handlers will have names starting * with the dot-separated name for the handler or logger. * <p> --- 76,86 ---- * to specify a properties file (in java.util.Properties format). The * initial logging configuration will be read from this file. * <p> * 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 conf/logging.properties}" in the Java installation * directory. * <p> * The properties for loggers and Handlers will have names starting * with the dot-separated name for the handler or logger. * <p>
*** 1208,1218 **** if (fname == null) { fname = System.getProperty("java.home"); if (fname == null) { throw new Error("Can't find java.home ??"); } ! File f = new File(fname, "lib"); f = new File(f, "logging.properties"); fname = f.getCanonicalPath(); } try (final InputStream in = new FileInputStream(fname)) { final BufferedInputStream bin = new BufferedInputStream(in); --- 1208,1218 ---- if (fname == null) { fname = System.getProperty("java.home"); if (fname == null) { throw new Error("Can't find java.home ??"); } ! File f = new File(fname, "conf"); f = new File(f, "logging.properties"); fname = f.getCanonicalPath(); } try (final InputStream in = new FileInputStream(fname)) { final BufferedInputStream bin = new BufferedInputStream(in);