~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/statcache.py

  • Committer: Martin Pool
  • Date: 2005-05-10 06:17:46 UTC
  • Revision ID: mbp@sourcefrog.net-20050510061746-971c9101a00a8faa
- more trace from statcache

Show diffs side-by-side

added added

removed removed

Lines of Context:
160
160
            cache[file_id] = cacheentry
161
161
            dirty += 1
162
162
 
163
 
    mutter('work cache: read %d files, %d changed' % (hardcheck, dirty))
 
163
    mutter('work cache: read %d files, %d changed, %d in cache'
 
164
           % (hardcheck, dirty, len(cache)))
164
165
        
165
166
    if dirty:
166
167
        write_cache(branch, cache.itervalues())