~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/log.py

  • Committer: Vincent Ladeuil
  • Date: 2010-02-09 17:15:17 UTC
  • mto: (5029.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5030.
  • Revision ID: v.ladeuil+lp@free.fr-20100209171517-1wzz1nh3d3nhnkbu
Move ReadonlyServer to bzrlib.tests.readonly

Show diffs side-by-side

added added

removed removed

Lines of Context:
136
136
        if False:
137
137
            elapsed = time.time() - before
138
138
            if result_len and elapsed > 0:
139
 
                # this is the rate of higher-level data, not the raw network speed
140
 
                mutter("      %9.03fs %8dKB/s" % (elapsed, result_len/elapsed/1024))
 
139
                # this is the rate of higher-level data, not the raw network
 
140
                # speed using base-10 units (see HACKING.txt).
 
141
                mutter("      %9.03fs %8dkB/s"
 
142
                       % (elapsed, result_len/elapsed/1000))
141
143
            else:
142
144
                mutter("      %9.03fs" % (elapsed))
143
145
        return return_result