xref: /xnu-8796.141.3/tools/lldbmacros/core/configuration.py (revision 1b191cb58250d0705d8a51287127505aa4bc0789)
1# global configs to be included by everybody. The recommended way is
2# from core.configuration import *
3# verbosity levels
4(vSILENT, vHUMAN, vSCRIPT, vDETAIL) = (0, 1, 2, 3)
5
6config = {
7    'debug': False,
8    'verbosity': vHUMAN,
9    'showTypeSummary': False,
10}
11# Note: The above configuration dictionary holds the default values.
12# 'debug' when True enables debug print messages in whole of xnu lldbmacros framework
13