本文整理汇总了Python中Install_Log.get_full_log方法的典型用法代码示例。如果您正苦于以下问题:Python Install_Log.get_full_log方法的具体用法?Python Install_Log.get_full_log怎么用?Python Install_Log.get_full_log使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Install_Log
的用法示例。
在下文中一共展示了Install_Log.get_full_log方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Exception_Handler_Apply
# 需要导入模块: import Install_Log [as 别名]
# 或者: from Install_Log import get_full_log [as 别名]
def Exception_Handler_Apply():
# Collect information
info = {}
info['log'] = Install_Log.get_full_log()
info['user'] = OWS_Login.login_user
info['comments'] = CTK.post['comments']
info['platform'] = SystemInfo.get_info()
info['tmp!market!install'] = CTK.cfg['tmp!market!install'].serialize()
# Send it
xmlrpc = XmlRpcServer (OWS_APPS_INSTALL, user=OWS_Login.login_user, password=OWS_Login.login_password)
install_info = xmlrpc.report_exception (info)
return CTK.cfg_reply_ajax_ok()