diff --git a/java/org/apache/catalina/valves/ExtendedAccessLogValve.java b/java/org/apache/catalina/valves/ExtendedAccessLogValve.java index 02b7a4eb0690..936ab5c2cc8a 100644 --- a/java/org/apache/catalina/valves/ExtendedAccessLogValve.java +++ b/java/org/apache/catalina/valves/ExtendedAccessLogValve.java @@ -54,17 +54,17 @@ *
  • date: The date in yyyy-mm-dd format for GMT
  • *
  • s-dns: The server dns entry
  • *
  • s-ip: The server ip address
  • - *
  • cs(XXX): The value of header XXX from client to server
  • - *
  • sc(XXX): The value of header XXX from server to client
  • + *
  • cs(xxx): The value of header xxx from client to server
  • + *
  • sc(xxx): The value of header xxx from server to client
  • *
  • sc-status: The status code
  • *
  • time: Time the request was served
  • *
  • time-taken: Time (in seconds) taken to serve the request
  • *
  • x-threadname: Current request thread name (can compare later with stacktraces)
  • - *
  • x-A(XXX): Pull XXX attribute from the servlet context
  • - *
  • x-C(XXX): Pull the cookie(s) of the name XXX
  • - *
  • x-O(XXX): Pull the all response header values XXX
  • - *
  • x-R(XXX): Pull XXX attribute from the servlet request
  • - *
  • x-S(XXX): Pull XXX attribute from the session
  • + *
  • x-A(xxx): Pull xxx attribute from the servlet context
  • + *
  • x-C(xxx): Pull the cookie(s) of the name xxx
  • + *
  • x-O(xxx): Pull the all response header values xxx
  • + *
  • x-R(xxx): Pull xxx attribute from the servlet request
  • + *
  • x-S(xxx): Pull xxx attribute from the session
  • *
  • x-P(...): Call request.getParameter(...) and URLencode it. Helpful to capture certain POST * parameters.
  • *
  • For any of the x-H(...) the following method will be called from the HttpServletRequest object