aspose file tools
The moose likes Other Open Source Projects and the fly likes can some one say what is wrong with my log4j.properties? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Products » Other Open Source Projects
Reply Bookmark "can some one say what is wrong with my log4j.properties?" Watch "can some one say what is wrong with my log4j.properties?" New topic
Author

can some one say what is wrong with my log4j.properties?

raminaa niilian
Ranch Hand

Joined: Jul 14, 2005
Posts: 550
Hi
Thank you for reading my post.
I have a log4j.properties which does not function correctly.
i want all log messages to go to a file like: messages.log but it append them to console instead of FileAppender.

here is the log4j properties file:



thanks
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35237
    
    7
Try removing the line


Android appsImageJ pluginsJava web charts
Carol Enderlin
drifter
Ranch Hand

Joined: Oct 10, 2000
Posts: 1348
Other than getting a warning, your log4j.properties file worked for me. It wrote to messages.log in the directory I was running the java command from. I am using version 1.2.14.

log4j:WARN No such property [target] in org.apache.log4j.FileAppender.


Is it really using the properties file you think it is?

Try adding log4j.debug=true to the properties file or a system property to the java call (it will put out some internal debug info to the console including how it is getting configured):

-Dlog4j.debug

[edited to add version number]
[ January 08, 2007: Message edited by: Carol Enderlin ]
raminaa niilian
Ranch Hand

Joined: Jul 14, 2005
Posts: 550
Thank you for reply.
It is fixed now, but another problem that i faces is like this:
The logger log hibernate messages but not my own message.
here is the code portion that i used to log some messges to this log file.
but my own messages are not in the log file and nor in the console

here is my code portion:


why it does not add my own messages to log file?

thanks
Carol Enderlin
drifter
Ranch Hand

Joined: Oct 10, 2000
Posts: 1348
your root logger (so rootlogger and everything else that isn't specified) is set to WARN level so debug and info won't be included
[ January 08, 2007: Message edited by: Carol Enderlin ]
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: can some one say what is wrong with my log4j.properties?
 
Similar Threads
Websphere server takes long time to startup
Problem configuring Hibernate and JPA in Eclipse
Tomcat log rotation
[SOLVED] log4j RollingFileAppender file location
log4j:WARN No appenders could be found for logger (LogClass)