How to enable jboss access log
![Jboss or Wildfly](https://i0.wp.com/www.techpaste.com/wp-content/uploads/2014/07/JBoss.jpg?fit=300%2C300&ssl=1)
Add the following to jboss/server/<InstanceName>/deploy/jbossweb.sar/server.xml in all instaces to enable htttp logging.
<Valve className="org.apache.catalina.valves.AccessLogValve"
prefix="access." suffix=".log"
pattern="%t %h Code:%s %Tsec - %Bbytes --%r" directory="${jboss.server.log.dir}"
resolveHosts="false" />
This will enable http access logging in Jboss.
In case of any ©Copyright or missing credits issue please check CopyRights page for faster resolutions.