Leigh wrote:This is probably not docx4j specific, but does anyone know how to disable/change the logging settings? I have tried various things like log4j.properties or log4j.xml files, with different settings. But I must have missed something because it is not disabling the "info" output
That's right, you use the log4j properties settings to change the log settings.
Note that there are currently still a few System.out.println which display stuff when you load/save; log4j settings won't affect these. (These are the one's which will show up without the usual log4j stamp at the start of the line.)
If your changes to log4j settings aren't being noticed, most likely the log4j.properties|.xml is not on your class path.
Edit: Or more to the point, there is another log4j.properties|.xml which is on the class path.
cheers .. Jason