I had a similar problem with the logging.
I got it to work with log4j in the end by:
Putting the following jars in my lib directory:
log4j-1.2.15.jar
slf4j-api-1.5.3.jar
slf4j-log4j12-1.5.3.jar
commons-logging-1.1.1.jar
And a log4j.properties file in to my src directory with the following content:
Quote:
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.Target=System.out
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n
log4j.rootLogger=warn, stdout
log4j.logger.org.hibernate.tool.hbm2ddl=debug
Good luck, and I hope you get it up and running soon.