~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/help_topics/__init__.py

  • Committer: Martin Pool
  • Date: 2009-03-12 05:11:05 UTC
  • mto: This revision was merged to the branch mainline in revision 4144.
  • Revision ID: mbp@sourcefrog.net-20090312051105-ee7vcl1ocgxntxmk
Split debug flags into their own help topic

Show diffs side-by-side

added added

removed removed

Lines of Context:
299
299
 
300
300
See doc/developers/profiling.txt for more information on profiling.
301
301
A number of debug flags are also available to assist troubleshooting and
302
 
development.
303
 
 
304
 
-Dauth            Trace authentication sections used.
305
 
-Derror           Instead of normal error handling, always print a traceback
306
 
                  on error.
307
 
-Devil            Capture call sites that do expensive or badly-scaling
308
 
                  operations.
309
 
-Dfetch           Trace history copying between repositories.
310
 
-Dgraph           Trace graph traversal.
311
 
-Dhashcache       Log every time a working file is read to determine its hash.
312
 
-Dhooks           Trace hook execution.
313
 
-Dhpss            Trace smart protocol requests and responses.
314
 
-Dhttp            Trace http connections, requests and responses
315
 
-Dindex           Trace major index operations.
316
 
-Dknit            Trace knit operations.
317
 
-Dlock            Trace when lockdir locks are taken or released.
318
 
-Dmerge           Emit information for debugging merges.
319
 
-Dpack            Emit information about pack operations.
320
 
-Dsftp            Trace SFTP internals.
321
 
 
322
 
These can also be set in the debug_flags configuration variable.
 
302
development.  See `bzr help debug-flags`.
323
303
"""
324
304
 
325
305
_standard_options = \
744
724
                        'Details on the configuration settings available')
745
725
topic_registry.register('conflicts', _load_from_file,
746
726
                        'Types of conflicts and what to do about them')
 
727
topic_registry.register('debug-flags', _load_from_file,
 
728
                        'Options to show or record debug information')
747
729
topic_registry.register('hooks', _load_from_file,
748
730
                        'Points at which custom processing can be added')
749
731
topic_registry.register('log-formats', _load_from_file,