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