I'm trying out log4j in a simple test app. I create a new Java project in eclipse and add the log4j JAR (v1.2.16) to my build path. I then create a simple class that prints Hello World. Then I use the log4j Logger
class to log a info message. When I run the app, I see the log message, using what I assume is the default appender and layout. Great. What I'm having trouble with is adding my own configuration. This is what I've done:
Created a log4j.properties file with a custom appender and log level and placed it into the src folder (which upon compilation gets copied to the bin folder). Run the app - no change.
I try adding PropertyConfigurator.configure("log4j.properties")
. Run the app - no change. No errors, but no change.
What do I have to do to get log4j to load my configuration file?
The problem may be in the
classpath
, if theclasspath
was defined.The reason it wasn't loading (in my case): There was a conflicting
log4j.properties
file in one of my jars, and it was overloading the one in myclasspath
.In short, if your
log4j.properties
file isn't loading, there might be another one somewhere else overriding it.Just thought I'd throw this in too, in case anyone else runs into this. I just spent the last 5 hours trying to figure out why my default
log4j.properties
wouldn't load.log4j.properties
should be in your classpath. The "src folder" which is copied to the "bin folder" (I assume you are speaking of a Eclipse setup here), normally belongs to your classpath, so it should be found (are you placing it at the top of the "src" folder, right?)Argh. I discovered the problem was that eclipse had imported the wrong
Logger
class. It had imported java.util.logging.Logger which of course has it's own configuration that is different from log4j. Oh well, hope somebody else does this and gets it solved by reading this question.I know this is a couple of months old, but I feel the need to point out that the scr folder isn't "copied" to the bin folder, nor is it part of your runtime classpath....(build path is not runtime classpath!). Eclipse compiles the source files in the src folder to the bin (or whatever you like) folder. It's the bin folder that is part of your runtime classpath.
Just wanted to point this out as these threads are often read by very junior programmers as well, and I'm always frustrated that most of them don't grasp the finesse of the Java classpath, and hence make avoidable mistakes against it.
You can enable log4j internal debugging by setting the
log4j.debug
system property. Among other things, this will cause log4j to show how it is configuring itself.You can try explicitly setting the URL to the configuration file with the
log4j.configuration
system property.See also: this question.
For those that haven't RTFM, look under the heading Default Initialization Procedure, where you'll find the following: