Changeset 559
- Timestamp:
- 08/26/05 19:02:21
- Files:
-
- trunk/cherrypy/_cphttptools.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/_cphttptools.py
r558 r559 354 354 req.simpleCookie.load(value) 355 355 356 msg = "%s - %s" % (req.remoteAddr, req.requestLine) 357 cherrypy.log(msg, "HTTP") 356 # Write a message to the error.log only if there is no access.log. 357 # This is only here for backwards-compatibility (with the time 358 # before the access.log existed), and should be removed in CP 2.2. 359 fname = cherrypy.config.get('server.logAccessFile', '') 360 if not fname: 361 msg = "%s - %s" % (req.remoteAddr, req.requestLine) 362 cherrypy.log(msg, "HTTP") 358 363 359 364 # Save original values (in case they get modified by filters)

