~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_osutils.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-01-10 01:15:47 UTC
  • mfrom: (3170.1.2 debug-timestamps)
  • Revision ID: pqm@pqm.ubuntu.com-20080110011547-97smthgbb8hfshs7
(andrew) Add -Dtimes debug flag.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1096
1096
 
1097
1097
 
1098
1098
# NOTE: If update these, please also update the help for global-options in
1099
 
#       bzrlib/help_topics.py.
 
1099
#       bzrlib/help_topics/__init__.py
1100
1100
 
1101
1101
debug_flags = set()
1102
1102
"""Set of flags that enable different debug behaviour.
1109
1109
 * error - show stack traces for all top level exceptions
1110
1110
 * evil - capture call sites that do expensive or badly-scaling operations.
1111
1111
 * fetch - trace history copying between repositories
 
1112
 * hashcache - log every time a working file is read to determine its hash
1112
1113
 * hooks - trace hook execution
1113
1114
 * hpss - trace smart protocol requests and responses
1114
1115
 * http - trace http connections, requests and responses
1115
1116
 * index - trace major index operations
1116
1117
 * lock - trace when lockdir locks are taken or released
1117
1118
 * merge - emit information for debugging merges
 
1119
 * times - record timestamps from program start in trace file
1118
1120
 
1119
1121
"""
1120
1122
'''