From: Rich Bowen
Date: Sat, 25 Sep 2010 15:07:49 +0000 (+0000)
Subject: Make a note about RewriteLog for folks that are looking for it. Probably
X-Git-Tag: 2.3.9~427
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cbea02b4799f8989f61f76c9038495b83eaf69ad;p=thirdparty%2Fapache%2Fhttpd.git
Make a note about RewriteLog for folks that are looking for it. Probably
should leave this here for a couple years until folks get used to the
new stuff.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1001232 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/mod/mod_rewrite.html.en b/docs/manual/mod/mod_rewrite.html.en
index a2104ce0fc6..e8ac7e7003f 100644
--- a/docs/manual/mod/mod_rewrite.html.en
+++ b/docs/manual/mod/mod_rewrite.html.en
@@ -85,6 +85,21 @@ URLs on the fly
LogLevel rewrite:trace3
+ RewriteLog
+
Those familiar with earlier versions of
+ mod_rewrite
will no doubt be looking for the
+ RewriteLog
and RewriteLogLevel
+ directives. This functionality has been completely replaced by the
+ new per-module logging configuration mentioned above.
+
+
+
To get just the mod_rewrite
-specific log
+ messages, pipe the log file through grep:
+
+ tail -f error_log|fgrep '[rewrite:'
+
+
+

diff --git a/docs/manual/mod/mod_rewrite.xml b/docs/manual/mod/mod_rewrite.xml
index f4e3e8ba18f..3054000a7c3 100644
--- a/docs/manual/mod/mod_rewrite.xml
+++ b/docs/manual/mod/mod_rewrite.xml
@@ -72,6 +72,21 @@ URLs on the fly
LogLevel rewrite:trace3
+
RewriteLog
+ Those familiar with earlier versions of
+ mod_rewrite will no doubt be looking for the
+ RewriteLog
and RewriteLogLevel
+ directives. This functionality has been completely replaced by the
+ new per-module logging configuration mentioned above.
+
+
+ To get just the mod_rewrite-specific log
+ messages, pipe the log file through grep:
+
+ tail -f error_log|fgrep '[rewrite:'
+
+
+