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