Changeset 1122
- Timestamp:
- 06/05/06 01:30:22
- Files:
-
- trunk/cherrypy/config.py (modified) (2 diffs)
- trunk/cherrypy/test/test_core.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/config.py
r1105 r1122 2 2 3 3 import ConfigParser 4 import os 4 5 5 6 import cherrypy … … 54 55 'server.thread_pool': 10, 55 56 'log_to_screen': True, 56 'log_file': '', 57 'log_file': os.path.join(os.getcwd(), os.path.dirname(__file__), 58 "error.log"), 57 59 'tools.log_tracebacks.on': True, 58 60 'environment': "development", trunk/cherrypy/test/test_core.py
r1102 r1122 173 173 class Flatten(Test): 174 174 175 _cp_config = {'log_file': log_file, 'log_access_file': log_access_file,} 175 _cp_config = {'log_file': log_file, 176 'log_access_file': log_access_file, 177 } 176 178 177 179 def as_string(self): … … 194 196 class Error(Test): 195 197 196 _cp_config = {'log_file': log_file, 'tools.log_tracebacks.on': True} 198 _cp_config = {'log_file': log_file, 199 'tools.log_tracebacks.on': True, 200 } 197 201 198 202 def custom(self):

