/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/protocol.py

  • Committer: Robert Collins
  • Date: 2007-08-07 22:59:45 UTC
  • mfrom: (2681 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2682.
  • Revision ID: robertc@robertcollins.net-20070807225945-dlxppeb3we4lh897
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
from bzrlib import debug
25
25
from bzrlib import errors
26
26
from bzrlib.smart import request
27
 
from bzrlib.trace import mutter
 
27
from bzrlib.trace import log_exception_quietly, mutter
28
28
 
29
29
 
30
30
# Protocol version strings.  These are sent as prefixes of bzr requests and
110
110
                raise
111
111
            except Exception, exception:
112
112
                # everything else: pass to client, flush, and quit
 
113
                log_exception_quietly()
113
114
                self._send_response(request.FailedSmartServerResponse(
114
115
                    ('error', str(exception))))
115
116
                return
302
303
 
303
304
    def call(self, *args):
304
305
        if 'hpss' in debug.debug_flags:
305
 
            mutter('hpss call: %r', args)
 
306
            mutter('hpss call:   %r', args)
306
307
        self._write_args(args)
307
308
        self._request.finished_writing()
308
309