Question : Use slf4j with properties file

Hi,

I'm trying to log with slf4j using properties file. But I am not sure how to load the properties file. Here is the code I'm using:

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class TestLog4j {
  public static void main(String[] args) {
    Logger logger = LoggerFactory.getLogger(TestLog4j.class);
    // This works only for log4j, but not slf4j
    //PropertyConfigurator.configure("log4j.properties");

    logger.info("Hello World");  
  }
 
  private TestLog4j() {
  }
}

My log4j.properties file looks like this:

log4j.appender.A1=org.apache.log4j.RollingFileAppender
log4j.appender.A1.File=info.log
log4j.appender.A1.layout=org.apache.log4j.PatternLayout

log4j.logger.TestLog4j=INFO, A1

Thanks a lot!

Answer : Use slf4j with properties file

You should have to load it at all explicitly. Just make sure it's in the classpath
Random Solutions  
 
programming4us programming4us