Hi,
I don't seem to be able to get my commons-logging statements to display to the stdout durnig JUnit tests. My POM contains:
<unitTest>
<includes>
<include>**/*Test.java</include>
</includes>
<resources>
<resource>
<directory>${basedir}/test</directory>
<includes>
<include>**/*.properties</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
</unitTest>And my log4j.properties is as follows:
log4j.rootCategory=ERROR,stdout log4j.category.org.apache.taglibs.style=DEBUG
########################################
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=[%t] %-5p %c{2} - %m %nAny ideas about how I get this to work?#
Kind regards, -- Ricardo Gladwell
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
