Home | History | Annotate | Download | only in logging

Lines Matching refs:Properties

33 import java.util.Properties;
74 * configuration properties file.
87 * The name (<code>commons-logging.properties</code>) of the properties file to search for.
90 "commons-logging.properties";
359 * <li>Use the properties file <code>commons-logging.properties</code>
361 * file is in standard <code>java.util.Properties</code> format and
368 * <p><em>NOTE</em> - If the properties file method of identifying the
370 * properties defined in this file will be set as configuration attributes
407 // Load properties file.
409 // If the properties
414 // As the properties file (if it exists) will be used one way or
417 Properties props = getConfigurationFile(contextClassLoader, FACTORY_PROPERTIES);
420 // load logging classes or not by checking the loaded properties file (if any).
555 // Third try looking into the properties file read earlier (if found)
561 "[LOOKUP] Looking in properties file for entry with key '"
569 "[LOOKUP] Properties file specifies LogFactory subclass '"
578 "[LOOKUP] Properties file has no entry specifying LogFactory subclass.");
584 "[LOOKUP] No properties file available to determine"
1351 * Given a URL that refers to a .properties file, load that file.
1358 private static Properties getProperties(final URL url) {
1365 Properties props = new Properties();
1379 return (Properties) AccessController.doPrivileged(action);
1386 * is searched for properties files of the specified name. If none is found,
1395 * override logging settings in all webapps by placing a commons-logging.properties
1397 * commons-logging.properties files without priorities which are in the
1401 private static final Properties getConfigurationFile(
1404 Properties props = null;
1417 Properties newProps = getProperties(url);
1430 "[LOOKUP] Properties file found at '" + url + "'"
1443 "[LOOKUP] Properties file at '" + url + "'"
1455 "[LOOKUP] Properties file at '" + url + "'"
1474 "[LOOKUP] No properties file of name '" + fileName
1478 "[LOOKUP] Properties file of name '" + fileName