Tabnine Logo
PropertyConfigurator.parseCatsAndRenderers
Code IndexAdd Tabnine to your IDE (free)

How to use
parseCatsAndRenderers
method
in
org.apache.log4j.PropertyConfigurator

Best Java code snippets using org.apache.log4j.PropertyConfigurator.parseCatsAndRenderers (Showing top 10 results out of 315)

origin: log4j/log4j

parseCatsAndRenderers(properties, hierarchy);
origin: camunda/camunda-bpm-platform

/**
  Read configuration options from <code>properties</code>.
  See {@link #doConfigure(String, LoggerRepository)} for the expected format.
*/
public
void doConfigure(Properties properties, LoggerRepository hierarchy) {
 String value = properties.getProperty(LogLog.DEBUG_KEY);
 if(value == null) {
  value = properties.getProperty(LogLog.CONFIG_DEBUG_KEY);
  if(value != null)
 LogLog.warn("[log4j.configDebug] is deprecated. Use [log4j.debug] instead.");
 }
 if(value != null) {
  LogLog.setInternalDebugging(OptionConverter.toBoolean(value, true));
 }
 String thresholdStr = OptionConverter.findAndSubst(THRESHOLD_PREFIX,
               properties);
 if(thresholdStr != null) {
  hierarchy.setThreshold(OptionConverter.toLevel(thresholdStr,
              (Level) Level.ALL));
  LogLog.debug("Hierarchy threshold set to ["+hierarchy.getThreshold()+"].");
 }
 configureRootCategory(properties, hierarchy);
 configureLoggerFactory(properties);
 parseCatsAndRenderers(properties, hierarchy);
 LogLog.debug("Finished configuring.");
 // We don't want to hold references to appenders preventing their
 // garbage collection.
 registry.clear();
}
origin: apache/log4j

parseCatsAndRenderers(properties, hierarchy);
origin: org.apache/log4j

parseCatsAndRenderers(properties, hierarchy);
origin: com.impetus.fabric/fabric-jdbc-driver-shaded

parseCatsAndRenderers(properties, hierarchy);
origin: apache-log4j/log4j

parseCatsAndRenderers(properties, hierarchy);
origin: at.bestsolution.efxclipse.eclipse/org.apache.log4j

parseCatsAndRenderers(properties, hierarchy);
origin: org.apache.activemq/activemq-all

parseCatsAndRenderers(properties, hierarchy);
origin: org.apache.log4j/com.springsource.org.apache.log4j

parseCatsAndRenderers(properties, hierarchy);
origin: org.jboss.logmanager/log4j-jboss-logmanager

parseCatsAndRenderers(properties, hierarchy);
org.apache.log4jPropertyConfiguratorparseCatsAndRenderers

Javadoc

Parse non-root elements, such non-root categories and renderers.

Popular methods of PropertyConfigurator

  • configure
    Read configuration options from properties. See #doConfigure(String,LoggerRepository) for the expect
  • configureAndWatch
    Read the configuration file configFilename if it exists. Moreover, a thread will be created that wil
  • <init>
  • doConfigure
    Read configuration options from properties. See #doConfigure(String,LoggerRepository) for the expect
  • configureLoggerFactory
    Check the provided Properties object for a org.apache.log4j.spi.LoggerFactoryentry specified by #LOG
  • configureRootCategory
  • parseAdditivityForLogger
    Parse the additivity option for a non-root category.
  • parseAppender
  • parseCategory
    This method must work for the root category as well.
  • registryGet
  • registryPut
  • parseAppenderFilters
  • registryPut,
  • parseAppenderFilters,
  • parseErrorHandler

Popular in Java

  • Updating database using SQL prepared statement
  • findViewById (Activity)
  • putExtra (Intent)
  • compareTo (BigDecimal)
  • Socket (java.net)
    Provides a client-side TCP socket.
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • Date (java.util)
    A specific moment in time, with millisecond precision. Values typically come from System#currentTime
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement. A servlet is a small Java program that runs within
  • JList (javax.swing)
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now