Override log4j.properties

24,676

There are several way to override log4j.properties, one of them is:

  • Use log4j.xml please see the extension

Another approach is:

  • Setting the log4j.defaultInitOverride system property to any other value then "false" will cause log4j to skip the default initialization procedure (this procedure).
  • Set the resource string variable to the value of the log4j.configuration system property. The preferred way to specify the default initialization file is through the log4j.configuration system property. In case the system property log4j.configuration is not defined, then set the string variable resource to its default value "log4j.properties".
  • Attempt to convert the resource variable to a URL.
  • If the resource variable cannot be converted to a URL, for example due to a MalformedURLException, then search for the resource from the classpath by calling org.apache.log4j.helpers.Loader.getResource(resource, Logger.class) which returns a URL. Note that the string "log4j.properties" constitutes a malformed URL. See Loader.getResource(java.lang.String) for the list of searched locations.
  • If no URL could not be found, abort default initialization. Otherwise, configure log4j from the URL. The PropertyConfigurator will be used to parse the URL to configure log4j unless the URL ends with the ".xml" extension, in which case the DOMConfigurator will be used. You can optionaly specify a custom configurator. The value of the log4j.configuratorClass system property is taken as the fully qualified class name of your custom configurator. The custom configurator you specify must implement the Configurator interface.

Ref: http://logging.apache.org/log4j/1.2/manual.html

Share:
24,676
Isaac Sutherland
Author by

Isaac Sutherland

Updated on July 09, 2022

Comments

  • Isaac Sutherland
    Isaac Sutherland almost 2 years

    My java application references a 3rd-party jar file which uses log4j logging. The problem is that this jar contains its own log4j.properties file which causes access denied exceptions on my machine, but I don't have control over the jar file to change its contents.

    I have tried adding my own log4j.properties file in my application's classpath, but it doesn't seem to have an effect. If I try to use PropertyConfigurator to import my own settings programmatically, log4j seems to load the jar file's properties file first (causing an exception).

    How can I short-circuit log4j to ignore a 3rd-party jar file's log4j.properties file and use my own?

  • Bob Cross
    Bob Cross over 6 years
    The URL refers to the end of life version of Log4j. The closest equivalent is: logging.apache.org/log4j/2.x/manual/…
  • Piotr P. Karwasz
    Piotr P. Karwasz over 2 years
    LOG4J_CONFIGURATION_FILE is specific to Log4j 2.x. The question is about Log4j 1.x.