~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/trace.py

  • Committer: Aaron Bentley
  • Date: 2006-06-29 16:24:56 UTC
  • mto: This revision was merged to the branch mainline in revision 1823.
  • Revision ID: abentley@panoramicfeedback.com-20060629162456-9dbd1c2795d474dd
More notes on 'note'

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
_bzr_logger = logging.getLogger('bzr')
76
76
 
77
77
def note(*args, **kwargs):
 
78
    # FIXME note always emits utf-8, regardless of the terminal encoding
78
79
    import bzrlib.ui
79
80
    bzrlib.ui.ui_factory.clear_term()
80
81
    _bzr_logger.info(*args, **kwargs)