/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/debug.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 19:09:26 UTC
  • mfrom: (6622.1.36 breezy)
  • Revision ID: jelmer@jelmer.uk-20170521190926-5vtz8xaf0e9ylrpc
Merge rename to breezy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
These are set with eg ``-Dlock`` on the bzr command line or in
20
20
~/.bazaar/bazaar.conf debug_flags.
21
21
 
22
 
See `bzr help debug-flags` or `bzrlib/help_topics/en/debug-flags.txt`
 
22
See `bzr help debug-flags` or `breezy/help_topics/en/debug-flags.txt`
23
23
for a list of the available options.
24
24
"""
25
25
 
31
31
def set_debug_flags_from_config():
32
32
    """Turn on debug flags based on the global configuration"""
33
33
 
34
 
    from bzrlib import config
 
34
    from breezy import config
35
35
 
36
36
    c = config.GlobalStack()
37
37
    for f in c.get('debug_flags'):
51
51
 
52
52
    you can do:
53
53
 
54
 
       from bzrlib import debug; debug.set_trace()
 
54
       from breezy import debug; debug.set_trace()
55
55
    """
56
56
    import pdb
57
57
    import sys