I am just starting with log4j. I have no problem reading my properties file and actually logging events, but it seems to add everything to the end of the same line. My properties file is as follows:
# A1 is set to be a ConsoleAppender. log4j.appender.A1=org.apache.log4j.ConsoleAppender
The above has been modified from the example in log4j "Complete Guide". I fruitlessly looked through the book and Google to get a list of what all options mean, but to no avail.
I am using log4j version 1.2.15 with Java 6. What can I do to get each entry on a separate line and where can I find a list of what all the parameters are and what they do?
source share