Bug 12181

Summary: Improved cookie logging in mod_rewrite
Product: Apache httpd-2 Reporter: Rob Cromwell <apachebugs>
Component: mod_rewriteAssignee: Apache HTTPD Bugs Mailing List <bugs>
Status: CLOSED FIXED    
Severity: enhancement Keywords: PatchAvailable
Priority: P3    
Version: 2.0.40   
Target Milestone: ---   
Hardware: All   
OS: All   

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!