~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/smart/protocol.py

  • Committer: Andrew Bennetts
  • Date: 2007-07-09 05:56:41 UTC
  • mto: This revision was merged to the branch mainline in revision 2595.
  • Revision ID: andrew.bennetts@canonical.com-20070709055641-fy6ef6m7cw1ifrxj
Make -Dhpss use mutter instead of note to be consistent with other debug_flags.

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 note
 
27
from bzrlib.trace import mutter
28
28
 
29
29
 
30
30
# Protocol version strings.  These are sent as prefixes of bzr requests and
302
302
 
303
303
    def call(self, *args):
304
304
        if 'hpss' in debug.debug_flags:
305
 
            note('hpss call: %r', args)
 
305
            mutter('hpss call: %r', args)
306
306
        self._write_args(args)
307
307
        self._request.finished_writing()
308
308
 
312
312
        After calling this, call read_response_tuple to find the result out.
313
313
        """
314
314
        if 'hpss' in debug.debug_flags:
315
 
            note('hpss call w/body: %r (%r...)', args, body[:20])
 
315
            mutter('hpss call w/body: %r (%r...)', args, body[:20])
316
316
        self._write_args(args)
317
317
        bytes = self._encode_bulk_data(body)
318
318
        self._request.accept_bytes(bytes)
325
325
        each pair are separated by a comma, and no trailing \n is emitted.
326
326
        """
327
327
        if 'hpss' in debug.debug_flags:
328
 
            note('hpss call w/readv: %r', args)
 
328
            mutter('hpss call w/readv: %r', args)
329
329
        self._write_args(args)
330
330
        readv_bytes = self._serialise_offsets(body)
331
331
        bytes = self._encode_bulk_data(readv_bytes)
348
348
        """
349
349
        result = self._recv_tuple()
350
350
        if 'hpss' in debug.debug_flags:
351
 
            note('hpss result: %r', result)
 
351
            mutter('hpss result: %r', result)
352
352
        if not expect_body:
353
353
            self._request.finished_reading()
354
354
        return result