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