/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/smart/server.py

  • Committer: Martin Pool
  • Date: 2009-09-18 01:08:24 UTC
  • mto: This revision was merged to the branch mainline in revision 4712.
  • Revision ID: mbp@sourcefrog.net-20090918010824-o96afvwbbxhw4d5p
Unhandled smart-server exceptions are reported using generic report_exception

Show diffs side-by-side

added added

removed removed

Lines of Context:
134
134
                # dont log when CTRL-C'd.
135
135
                raise
136
136
            except Exception, e:
137
 
                trace.error("Unhandled smart server error.")
138
 
                trace.log_exception_quietly()
 
137
                trace.report_exception(sys.exc_info(), sys.stderr)
139
138
                raise
140
139
        finally:
141
140
            self._stopped.set()