Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Use system properties OR variables in log4j

Tags:

java

log4j

I want to to do like this:

<appender name="ErrorLog" class="org.apache.log4j.FileAppender">
        <param name="File" value="${error.log.path}"/>
        <param name="Append" value="true" />
        <param name="Threshold" value="ERROR"/>
        <layout class="org.apache.log4j.PatternLayout">
            <param name="ConversionPattern" value="%C{1} %L [%t] %d{dd MMM,yyyy HH:mm:ss.SSS} %-5p - %m%n" />
        </layout>
    </appender>

Notice this line: <param name="File" value="${error.log.path}"/>

I tried to set the values like this:

public static void main(String[] args) {
     System.setProperty("error.log.path", "/test/crm/log/error.log");
     ApplicationContext context = new ClassPathXmlApplicationContext("blah.xml");
     ..........
     .......... 
  }

But I don't see any effect.

Is log4j gets configured before calling the main method?

Is there any other way to do this?

like image 792
Mawia Avatar asked Jan 15 '13 06:01

Mawia


People also ask

Is log4j properties required?

rootLogger property sets the Level (DEBUG here) and Appender (A1 here) for root Logger. This is not mandatory. Root logger does not have a default appender attached and it can exist without an appender.


4 Answers

Look at this thread

It looks like you did everything right. I don't think there is any difference between setting the property inside your main class with System.setProperty() and specifying it via the command line as long as it happens befor actual log4j initialization.

I think your issue is that your logging framework gets loaded before you specify the property. I can say that the logging framework (log4j) will get configured when you call the configurator. Stuff like BasicConfigurator.configure() (in your case its xml configurator).

Otherwise the first attempt to use the logging will cause message like "log4j is not configured properly".

The real question is whether your code snippet with 'main' is not oversimplified.

With this in mind, another question that I have to ask - whether you're running inside some container or you're running a real vanilla method main and configure everything by yourself? I'm asking because if you're running in container, the chances are that container will by itself somehow configure its logging, for example JBoss will do so. In this case more investigation is required.

Hope this helps

like image 182
Mark Bramnik Avatar answered Oct 18 '22 20:10

Mark Bramnik


System Properties can be used as ${user.home}, pick required from here http://docs.oracle.com/javase/tutorial/essential/environment/sysprop.html

example :

<appender name="errorLog" class="com.qait.logger.IOPFileAppender">
    <param name="Threshold" value="ERROR" />
    <param name="File"
        value="${user.home}/Harvestors/IOP Error Logs/error.log" />
    <layout class="org.apache.log4j.PatternLayout">
        <param name="ConversionPattern" value="%d%-5p  [%c{1}] %m %n" />
    </layout>
    <filter class="org.apache.log4j.varia.LevelMatchFilter">
        <param name="LevelToMatch" value="ERROR" />
        <param name="AcceptOnMatch" value="true" />
    </filter>
    <filter class="org.apache.log4j.varia.DenyAllFilter" />
</appender>
like image 28
gursahib.singh.sahni Avatar answered Oct 18 '22 21:10

gursahib.singh.sahni


You can do it by configure appender pragmatically

  FileAppender fa = new FileAppender();
  fa.setFile("/test/crm/log/error.log");
  fa.setLayout(new 
   PatternLayout("%C{1} %L [%t] %d{dd MMM,yyyy HH:mm:ss.SSS} %-5p - %m%n"));
  fa.setThreshold(Level.ERROR);
  fa.setAppend(true);
  fa.activateOptions();
  Logger.getRootLogger().addAppender(fa);
  // similarly you can add all appenders.

 // or just append file name alone 
 Logger log = Logger.getLogger(YourClass.class);
 FileAppender appender = (FileAppender) log.getAppender("ErrorLog");
 appender.setFile("appender");
like image 3
vels4j Avatar answered Oct 18 '22 22:10

vels4j


Access to your property via "sys:" prefix.

Example:

        <param name="File" value="${sys:error.log.path}"/>

For more information follow this link: https://logging.apache.org/log4j/2.x/manual/lookups.html

like image 2
s1ckret Avatar answered Oct 18 '22 21:10

s1ckret