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