~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/trace.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-12-07 07:39:29 UTC
  • mfrom: (3092.2.1 bugs-to-malone)
  • Revision ID: pqm@pqm.ubuntu.com-20071207073929-f7omudrz098hx6ds
Ask people to report bugs to Launchpad, and mention more support options

Show diffs side-by-side

added added

removed removed

Lines of Context:
188
188
        if tf.tell() <= 2:
189
189
            tf.write("this is a debug log for diagnosing/reporting problems in bzr\n")
190
190
            tf.write("you can delete or truncate this file, or include sections in\n")
191
 
            tf.write("bug reports to bazaar@lists.canonical.com\n\n")
 
191
            tf.write("bug reports to https://bugs.launchpad.net/bzr/+filebug\n\n")
192
192
        _file_handler = logging.StreamHandler(tf)
193
193
        fmt = r'[%(process)5d] %(asctime)s.%(msecs)03d %(levelname)s: %(message)s'
194
194
        datefmt = r'%a %H:%M:%S'
382
382
        err_file.write("  %-20s %s [%s]\n" %
383
383
            (name, a_plugin.path(), a_plugin.__version__))
384
384
    err_file.write(
385
 
        "\n"
386
 
        "** Please send this report to bazaar@lists.ubuntu.com\n"
387
 
        "   with a description of what you were doing when the\n"
388
 
        "   error occurred.\n"
389
 
        )
 
385
"""\
 
386
*** Bazaar has encountered an internal error.
 
387
    Please report a bug at https://bugs.launchpad.net/bzr/+filebug
 
388
    including this traceback, and a description of what you
 
389
    were doing when the error occurred.
 
390
""")