~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/__init__.py

  • Committer: Martin Pool
  • Date: 2006-06-04 22:04:20 UTC
  • mto: This revision was merged to the branch mainline in revision 1797.
  • Revision ID: mbp@sourcefrog.net-20060604220420-6bab3e2b6ebe013e
Cleanup more exception-formatting code

Show diffs side-by-side

added added

removed removed

Lines of Context:
630
630
        self.log('run bzr: %s', ' '.join(argv))
631
631
        # FIXME: don't call into logging here
632
632
        handler = logging.StreamHandler(stderr)
633
 
        handler.setFormatter(bzrlib.trace.QuietFormatter())
634
633
        handler.setLevel(logging.INFO)
635
634
        logger = logging.getLogger('')
636
635
        logger.addHandler(handler)