Bug 12181 - Improved cookie logging in mod_rewrite
Summary: Improved cookie logging in mod_rewrite
Status: CLOSED FIXED
Alias: None
Product: Apache httpd-2
Classification: Unclassified
Component: mod_rewrite (show other bugs)
Version: 2.0.40
Hardware: All All
: P3 enhancement (vote)
Target Milestone: ---
Assignee: Apache HTTPD Bugs Mailing List
URL:
Keywords: PatchAvailable
Depends on:
Blocks:
 
Reported: 2002-08-29 21:20 UTC by Rob Cromwell
Modified: 2004-11-16 19:05 UTC (History)
0 users



Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Rob Cromwell 2002-08-29 21:20:56 UTC
The current entries to the rewrite log only include the name and value of the 
cookie.  This should be changed to include all fields from the cookie for 
easier debugging.  

Current log writer call on line 4171 of mod_rewrite.c

rewritelog(r, 5, "setting cookie '%s' to '%s'", var, val);

Should be changed to:

rewritelog(r, 5, "setting cookie '%s'", cookie );
Comment 1 Ian Holsman 2002-08-29 23:00:00 UTC
done.
if you can check the latest version of CVS to confirm that it is working for you
Comment 2 Rob Cromwell 2002-08-30 01:10:29 UTC
Works great!