On Tue, Apr 15, 2008 at 11:20 PM, Philistine, Ralph J <[EMAIL PROTECTED]> wrote: > I have placed the log4j.properties file in the classes directory where > it has worked for me in the past but the server is not reading it there. > I have recently switched to the version that is based on Java 1.4. Here > is the contents of the file: > > log4j.rootLogger=ERROR, R > log4j.appender.R=org.apache.log4j.DailyRollingFileAppender > log4j.appender.R.File=./res/log/logx.gen > log4j.appender.R.layout=org.apache.log4j.PatternLayout > log4j.appender.logfile.layout.ConversionPattern=%d %p [%c] - %m%n > > My only hypothesis is that the version of ApacheFTP that I am using uses > slf4j instead of log4j. This application logs properly on Windows. Is > there an issue with ApacheFTPServer logging on UNIX?
Yes, we use SLF4J as a logging facade since some time back (two years or so). However, with the right setup of JAR files (slf4j-api, slf4j-log4j12 and log4j) it should send all logging events to Log4j. Could you please confirm that you got these three JARs on your classpath? /niklas
