Hi All, I have a Tomcat 6.0 server with the following log valve:
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" prefix="my_access_log." suffix=".log" pattern="%{x-Forwarded-For}i %l %u %t "%r" %s %b "%{Referer}i" "%{User-agent}i" %D "%{Cookie}i"" rotatable="true" resolveHosts="false" /> For some reason, the logs don't show any HTTP POST requests with the POST data (I'm trying to capture both all GET and POST data sent to the server). Does anyone know how I can resolve this? Thanks so much!