Changeset 1831
- Timestamp:
- 11/13/07 20:58:00
- Files:
-
- trunk/cherrypy/restsrv/wspbus.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/restsrv/wspbus.py
r1830 r1831 170 170 raise 171 171 except: 172 start_trace = _traceback.format_exc() 172 self.log("Shutting down due to error in start listener:\n%s" % 173 _traceback.format_exc()) 173 174 e_info = sys.exc_info() 174 175 try: … … 177 178 # Any stop/exit errors will be logged inside publish(). 178 179 pass 179 self.log("Exception that caused shutdown: %s" % start_trace)180 180 raise e_info[0], e_info[1], e_info[2] 181 181 … … 185 185 186 186 self.state = states.EXITING 187 self.log('Bus exit')187 self.log('Bus EXITING') 188 188 self.publish('exit') 189 189

