~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/trace.py

  • Committer: Martin Pool
  • Date: 2005-08-23 00:42:04 UTC
  • Revision ID: mbp@sourcefrog.net-20050823004204-7b310df0337eaaf3
- re-enable trace file (oops)

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
 
53
53
 
54
54
def _write_trace(msg):
55
 
    if 0:
56
 
        if _tracefile:
57
 
            _tracefile.write(_logprefix + msg + '\n')
 
55
    if _tracefile:
 
56
        _tracefile.write(_logprefix + msg + '\n')
58
57
 
59
58
 
60
59
def warning(msg):