You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is the expected output?
A parse-able line
What do you see instead?
Unparsable line
Please provide any additional information below.
Here's an example CustomLog line:
127.0.0.1 - - [31/Mar/2011:11:35:40 -0700] "GET /events HTTP/1.1" 200 103324 "https://blah.com/core" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.2.4) Gecko/20100611 Firefox/3.6.4" 11339 blah.com 80 6082970 "tokens=blah; otherstuff=blerg; badstuff="hey look at my quotation marks""
What steps will reproduce the problem?
Easiest fix:
Change findreferreragent = re.compile('Referer|User-Agent', re.I) to findreferreragent = re.compile('Referer|User-Agent|Cookie', re.I)
What is the expected output?
A parse-able line
What do you see instead?
Unparsable line
Please provide any additional information below.
Here's an example CustomLog line:
127.0.0.1 - - [31/Mar/2011:11:35:40 -0700] "GET /events HTTP/1.1" 200 103324 "https://blah.com/core" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.2.4) Gecko/20100611 Firefox/3.6.4" 11339 blah.com 80 6082970 "tokens=blah; otherstuff=blerg; badstuff="hey look at my quotation marks""
here's a test for you:
The text was updated successfully, but these errors were encountered: