I must be missing something. I have an application using docx4j and it persists in writing info and warn level messages to stderr during a data binding operation. I just want to turn it all off. I've tried this in the log4j.xml file:
<logger name="org.docx4j" level="error" additivity="false">
<AppenderRef ref="Console"/>
</logger>
But all level messages keep pouring out. The other developers on my team are yelling at me because their Eclipse console fills up with this stuff. Is there any way to turn them off?
Thanks.