Changeset 2046
- Timestamp:
- 09/27/08 20:43:26
- Files:
-
- trunk/cherrypy/_cplogging.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/_cplogging.py
r1984 r2046 127 127 stream=sys.stderr 128 128 h = logging.StreamHandler(stream) 129 h.setLevel(logging.DEBUG)130 129 h.setFormatter(logfmt) 131 130 h._cpbuiltin = "screen" … … 150 149 def _add_builtin_file_handler(self, log, fname): 151 150 h = logging.FileHandler(fname) 152 h.setLevel(logging.DEBUG)153 151 h.setFormatter(logfmt) 154 152 h._cpbuiltin = "file" … … 198 196 if not h: 199 197 h = WSGIErrorHandler() 200 h.setLevel(logging.DEBUG)201 198 h.setFormatter(logfmt) 202 199 h._cpbuiltin = "wsgi"

