From 2b81f34d2b9f4426fca29493259b3ad48c5068cb Mon Sep 17 00:00:00 2001 From: kkolinko Date: Thu, 21 Jul 2011 10:52:46 +0000 Subject: [PATCH] =?utf8?q?Trivial=20improvements=20to=20access=20log=20val?= =?utf8?q?ve=20docs.=20Fix=20typos=20noted=20by=20Andr=C3=A9=20Warnier.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1149104 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/catalina/valves/AccessLogValve.java | 33 ++++++++++++++++++++-- .../catalina/valves/ExtendedAccessLogValve.java | 10 +++---- webapps/docs/config/valve.xml | 26 ++++++++--------- 3 files changed, 48 insertions(+), 21 deletions(-) diff --git a/java/org/apache/catalina/valves/AccessLogValve.java b/java/org/apache/catalina/valves/AccessLogValve.java index 0c630729b..e7376492d 100644 --- a/java/org/apache/catalina/valves/AccessLogValve.java +++ b/java/org/apache/catalina/valves/AccessLogValve.java @@ -59,7 +59,8 @@ import org.apache.tomcat.util.buf.B2CConverter; *

Implementation of the Valve interface that generates a web server * access log with the detailed line contents matching a configurable pattern. * The syntax of the available patterns is similar to that supported by the - * Apache mod_log_config module. As an additional feature, + * Apache HTTP Server + * mod_log_config module. As an additional feature, * automatic rollover of log files when the date changes is also supported.

* *

Patterns for the logged message may include constant text or any of the @@ -101,7 +102,9 @@ import org.apache.tomcat.util.buf.B2CConverter; *

* There is also support to write information from the cookie, incoming * header, the Session or something else in the ServletRequest.
- * It is modeled after the apache syntax: + * It is modeled after the + * Apache HTTP Server log configuration + * syntax: *