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