xref: /xnu-10002.1.13/tools/lldbmacros/core/configuration.py (revision 1031c584a5e37aff177559b9f69dbd3c8c3fd30a)
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