You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by sf...@apache.org on 2011/07/03 18:51:04 UTC

svn commit: r1142459 - in /httpd/httpd/trunk/docs/manual/mod: mod_log_debug.html.en mod_log_debug.xml

Author: sf
Date: Sun Jul  3 16:51:04 2011
New Revision: 1142459

URL: http://svn.apache.org/viewvc?rev=1142459&view=rev
Log:
make example config match the description; improve wording

Modified:
    httpd/httpd/trunk/docs/manual/mod/mod_log_debug.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_log_debug.xml

Modified: httpd/httpd/trunk/docs/manual/mod/mod_log_debug.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_log_debug.html.en?rev=1142459&r1=1142458&r2=1142459&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_log_debug.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_log_debug.html.en Sun Jul  3 16:51:04 2011
@@ -46,8 +46,8 @@
         Log message after request to /foo/* is processed:
 
         <div class="example"><p><code>
-            &lt;Location /foo&gt;<br />
-            &nbsp;&nbsp;LogMessage "/foo has been requested"<br />
+            &lt;Location /foo/&gt;<br />
+            &nbsp;&nbsp;LogMessage "/foo/ has been requested"<br />
             &lt;/Location&gt;<br />
         </code></p></div>
       </li>
@@ -55,8 +55,8 @@
       <li>
         Log message if request to /foo/* is processed in a sub-request:
         <div class="example"><p><code>
-            &lt;Location /foo&gt;<br />
-            &nbsp;&nbsp;LogMessage "subrequest to /foo" hook=type_checker if=%{IS_SUBREQ}<br />
+            &lt;Location /foo/&gt;<br />
+            &nbsp;&nbsp;LogMessage "subrequest to /foo/" hook=type_checker if=%{IS_SUBREQ}<br />
             &lt;/Location&gt;<br />
         </code></p></div>
 
@@ -82,9 +82,9 @@
             &nbsp;&nbsp;LogMessage "%{reqenv:X-Foo}" hook=all<br />
             &lt;/Location&gt;<br />
         </code></p></div>
-        Together with the microsecond time stamps in the error log, this
-        allows to determine the times spent in the different parts of the
-        request processing.
+        Together with microsecond time stamps in the error log,
+        <code>hook=all</code> also allows to determine the times spent
+        in the different parts of the request processing.
       </li>
 
     </ol>
@@ -141,4 +141,4 @@
 </div><div id="footer">
 <p class="apache">Copyright 2011 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div>
-</body></html>
+</body></html>
\ No newline at end of file

Modified: httpd/httpd/trunk/docs/manual/mod/mod_log_debug.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_log_debug.xml?rev=1142459&r1=1142458&r2=1142459&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_log_debug.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_log_debug.xml Sun Jul  3 16:51:04 2011
@@ -36,8 +36,8 @@
         Log message after request to /foo/* is processed:
 
         <example>
-            &lt;Location /foo&gt;<br/>
-            &nbsp;&nbsp;LogMessage "/foo has been requested"<br/>
+            &lt;Location /foo/&gt;<br/>
+            &nbsp;&nbsp;LogMessage "/foo/ has been requested"<br/>
             &lt;/Location&gt;<br/>
         </example>
       </li>
@@ -45,8 +45,8 @@
       <li>
         Log message if request to /foo/* is processed in a sub-request:
         <example>
-            &lt;Location /foo&gt;<br/>
-            &nbsp;&nbsp;LogMessage "subrequest to /foo" hook=type_checker if=%{IS_SUBREQ}<br/>
+            &lt;Location /foo/&gt;<br/>
+            &nbsp;&nbsp;LogMessage "subrequest to /foo/" hook=type_checker if=%{IS_SUBREQ}<br/>
             &lt;/Location&gt;<br/>
         </example>
 
@@ -72,9 +72,9 @@
             &nbsp;&nbsp;LogMessage "%{reqenv:X-Foo}" hook=all<br/>
             &lt;/Location&gt;<br/>
         </example>
-        Together with the microsecond time stamps in the error log, this
-        allows to determine the times spent in the different parts of the
-        request processing.
+        Together with microsecond time stamps in the error log,
+        <code>hook=all</code> also allows to determine the times spent
+        in the different parts of the request processing.
       </li>
 
     </ol>