Hi all, I'm working at a complex structure with different supervisors report error messages following a certain hierarchy. When launching Chainsaw there are many default debug messages that complicate the error monitoring and I would like to remove them. I have this file where I configured everything I need and I tried to change the last line from "DEBUG" to "INFO" to reduce them but no effects occur. This is the file I use:
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd"> <log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="true"> <plugin name="logFileReceiver" class="org.apache.log4j.net.XMLSocketReceiver"> <param name="name" value="pixel" /> <param name="port" value="1972" /> <param name="threshold" value="INFO" /> </plugin> <root> <level value="INFO"/> </root> </log4j:configuration> What am I doing wrong? Thanks in advance for your help Ciao Giordano Cerizza
