Thank you Guido, I am currently using ibatis 2.1.5 and tomcat 5.0.28, do you think it's possible there is the same problem with tomcat 5?
I really would like to understand how it works for you. Do you have any special initialization of log4j in your webapp? Or do your DAO objects simply log to the console correctly ? Thanks in advance > I had the same problem when using ibatis 2.0.9 + tomcat 4.1.x (I think > there is a conflict with the commons-logging.jar). > It works fine for me with other servers (Sun ONE)... > > iBatis 2.1.5 removed commons-logging dependency, maybe you are using > an older version... > > http://mail-archives.apache.org/mod_mbox/ibatis-user-java/200504.mbox/[EMAIL > PROTECTED] > > > Good look, > Guido GarcĂa Bernardo. > > PD: This is my WEB-INF/classes/log4j.properties: > > log4j.appender.stdout=org.apache.log4j.ConsoleAppender > log4j.appender.stdout.layout=org.apache.log4j.PatternLayout > log4j.appender.stdout.layout.ConversionPattern=%3p %d{ABSOLUTE} [%t > %c{1}] - %m%n > > log4j.logger.com.ibatis=DEBUG, stdout > log4j.logger.com.ibatis.common.jdbc.SimpleDataSource=DEBUG, stdout > log4j.logger.java.sql.Connection=DEBUG, stdout > log4j.logger.java.sql.Statement=DEBUG, stdout > log4j.logger.java.sql.PreparedStatement=DEBUG, stdout > log4j.logger.java.sql.ResultSet=DEBUG, stdout > >
