如何更改jboss日志记录级别以显示我正在调用哪个java类?

时间:2012-09-27 13:38:31

标签: java logging jboss

是否可以设置jboss来显示我调用的URL,我正在调用的类以及我发送给它的参数?

我将我的类log4j.xml设置为TRACE,但这可能不是要更改的正确的.xml文件。它似乎没有做任何事情。也许我不是在看正确的日志?我只看到boot,errFile和server.log。

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

您可能需要启用RequestDumper

在Jboss 4.x.x中,可以在文件

中找到它

... /服务器/ [YOUR_CONFIG] /deploy/jboss-web.deployer/server.xml

    <!-- Uncomment to enable request dumper. This Valve "logs interesting 
         contents from the specified Request (before processing) and the 
         corresponding Response (after processing). It is especially useful 
         in debugging problems related to headers and cookies."
    -->

    <Valve className="org.apache.catalina.valves.RequestDumperValve" />