Re: Problems with logging

2005-10-12 Thread Ron Reynolds
you need to fix your log4j.properties file. best reference i've found on how to write them is in the JavaDocs here - http://logging.apache.org/log4j/docs/api/org/apache/log4j/PropertyConfigurator.html#doConfigure(java.lang.String, org.apache.log4j.spi.LoggerRepository) > Ok, I checked once again

Re: Problems with logging

2005-10-12 Thread Matteo Miraz
Ok, I checked once again my configuration, and I found that axis-ant.jar is not present in my new application's lib directory, and inside that jar there is the log4.properties... now I copied that file in WEB-INF/classes and the warning disappear... but still no log from my code... any ideas? tha

Re: Problems with logging

2005-10-12 Thread Ron Reynolds
you need to place a log4j.properties file in your WEB-INF/classes directory so that log4j can load it and be happy (or you need to remove the log4j jar from WEB-INF/lib which will leave you with jdk 1.4 logging or jcl default logging (if you're using jdk 1.3 or earlier). i posted a suggested log