summaryrefslogtreecommitdiff
path: root/docs/manual/mod/mod_logio.xml
diff options
context:
space:
mode:
authorAndré Malo <nd@apache.org>2002-11-18 00:50:15 +0000
committerAndré Malo <nd@apache.org>2002-11-18 00:50:15 +0000
commitc801aee45d50130a6e3636144dd8425ca655d7e2 (patch)
treecdf194437ac87d037b7a26d532583ad702fa4276 /docs/manual/mod/mod_logio.xml
parent2db8789fd5716e2fae3a37b215da69b7f4a6de2f (diff)
downloadhttpd-c801aee45d50130a6e3636144dd8425ca655d7e2.tar.gz
- add <seealso> to mod_log_config
- use same log format table style as mod_log_config -> update transformation git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97561 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_logio.xml')
-rw-r--r--docs/manual/mod/mod_logio.xml26
1 files changed, 13 insertions, 13 deletions
diff --git a/docs/manual/mod/mod_logio.xml b/docs/manual/mod/mod_logio.xml
index 7d1d817082..e7a7b70edc 100644
--- a/docs/manual/mod/mod_logio.xml
+++ b/docs/manual/mod/mod_logio.xml
@@ -22,36 +22,36 @@
</summary>
+<seealso><module>mod_log_config</module></seealso>
<seealso><a href="../logs.html">Apache Log Files</a></seealso>
<section id="formats">
<title>Custom Log Formats</title>
<p>This modules adds two new logging directives. The characteristics of the
- request itself are logged by placing "%" directives in the format string,
- which are replaced in the log file by the values as follows:</p>
+ request itself are logged by placing "<code>%</code>" directives in
+ the format string, which are replaced in the log file by the values as
+ follows:</p>
-<table>
+ <table border="1" style="zebra">
+ <tr><th>Format&nbsp;String</th>
+ <th>Description</th></tr>
-<tr><td>%...I:</td>
-<td>Bytes received, including request and headers, cannot be zero.</td></tr>
+ <tr><td><code>%...I</code></td>
+ <td>Bytes received, including request and headers, cannot be
+ zero.</td></tr>
-<tr><td>%...O:</td>
-<td>Bytes sent, including headers, cannot be zero.</td></tr>
-
-</table>
+ <tr><td><code>%...O</code></td>
+ <td>Bytes sent, including headers, cannot be zero.</td></tr>
+ </table>
<p>Usually, the functionality is used like this:</p>
<dl>
-
<dt>Combined I/O log format:</dt>
-
<dd><code>"%h %l %u %t \"%r\" %&gt;s %b \"%{Referer}i\"
\"%{User-agent}i\" %I %O"</code></dd>
-
</dl>
-
</section>
</modulesynopsis>