本文整理汇总了Python中utils.DebugLog.exception_print方法的典型用法代码示例。如果您正苦于以下问题:Python DebugLog.exception_print方法的具体用法?Python DebugLog.exception_print怎么用?Python DebugLog.exception_print使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类utils.DebugLog
的用法示例。
在下文中一共展示了DebugLog.exception_print方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: ConfigFileError
# 需要导入模块: from utils import DebugLog [as 别名]
# 或者: from utils.DebugLog import exception_print [as 别名]
vd_config_fname = 'vd.cfg'
DebugLog.debug_print_level2("The config_file is " + vd_config_fname)
if vd_config and os.path.exists(vd_config_fname):
vd_config.read(vd_config_fname)
else:
raise ConfigFileError('%s not found' % (vd_config_fname))
vdCommCenterThrd = Thread(target=vdCommCenter_inst.start)
vdCommCenterThrd.start()
server_data_entity = DataEntity(vd_config)
vd_contr = SvrController(vd_config, vdCommCenter_inst, server_data_entity)
root = Tk()
root.title("VIOS Deploy Tool")
DebugLog.info_print("Create Vd App")
appl = VdApp(root, vd_contr, vd_config)
#root.maxsize(1112, 676)
root.protocol('WM_DELETE_WINDOW',None)
root.mainloop()
vdCommCenter_inst.stop()
root.quit()
except :
DebugLog.exception_print("Catch exception")