~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/trace.py

[merge] bzr.dev 1827

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)