当前位置: 首页>>代码示例>>Python>>正文


Python DebugLog.exception_print方法代码示例

本文整理汇总了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")
        
开发者ID:xhan-shannon,项目名称:SystemControlView,代码行数:31,代码来源:vdt.py


注:本文中的utils.DebugLog.exception_print方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。