Author: slive
Date: Mon May 2 12:53:14 2005
New Revision: 165671
URL: http://svn.apache.org/viewcvs?rev=165671&view=rev
Log:
%t has logged request time for a very long time.
>From mod_log_config.c:
/* ### I think getting the time again at the end of the request
* just for logging is dumb. i know it's "required" for CLF.
* folks writing log parsing tools don't realise that out of order
* times have always been possible (consider what happens if one
* process calculates the time to log, but then there's a context
* switch before it writes and before that process is run again the
* log rotation occurs) and they should just fix their tools rather
* than force the server to pay extra cpu cycles. if you've got
* a problem with this, you can set the define. -djg
*/
Modified:
httpd/httpd/trunk/docs/manual/logs.xml
httpd/httpd/trunk/docs/manual/mod/mod_log_config.xml
Modified: httpd/httpd/trunk/docs/manual/logs.xml
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/docs/manual/logs.xml?rev=165671&r1=165670&r2=165671&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/logs.xml (original)
+++ httpd/httpd/trunk/docs/manual/logs.xml Mon May 2 12:53:14 2005
@@ -261,7 +261,7 @@
(<code>%t</code>)</dt>
<dd>
- The time that the server finished processing the request.
+ The time that the request was received.
The format is:
<p class="indent">
Modified: httpd/httpd/trunk/docs/manual/mod/mod_log_config.xml
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/docs/manual/mod/mod_log_config.xml?rev=165671&r1=165670&r2=165671&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_log_config.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_log_config.xml Mon May 2 12:53:14 2005
@@ -148,7 +148,7 @@
for the last.</td></tr>
<tr><td><code>%...t</code></td>
- <td>Time, in common log format time format (standard english
+ <td>Time the request was received (standard english
format)</td></tr>
<tr><td><code>%...{<var>format</var>}t</code></td>
|