On Apr 7, 2006, at 3:03 PM, Alex Greif wrote: > did the log file format change in the last weeks? Now it looks like > > p54BCD850.dip.t-dialin.net - - [07/Apr/2006 23:50:13] "GET / HTTP/1.1" > 304 - > > and few weeks ago it contained much more information like the referer > and the browser agent like > > 217.224.30.64 - - [Fri Apr 07 23:56:42 2006] "GET > /homepage/images/FBXXL_468_60.gif HTTP/1.0" 200 66418 > "http://adserver.uwe-troeger-online.de/adframe.php? > n=afeb0017&what=zone:2&refresh=20" > "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" > > > How can I configure my project so that I again get the referer and the > browser agent?
That's the difference in default HTTP server. There's two HTTP server usable: [server:main] use = egg:PasteScript#wsgiutils and: [server:main] use = egg:Paste#http Toggling between those will change the logging format. If you're in a situation where you need maximum performance, I'd suggest using SCGI + Apache/lighttpd and having the web-server handle logfiles. HTH, Ben --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/pylons-discuss -~----------~----~----~----~------~----~------~--~---
