本文整理汇总了Python中snslog.SNSLog.critical方法的典型用法代码示例。如果您正苦于以下问题:Python SNSLog.critical方法的具体用法?Python SNSLog.critical怎么用?Python SNSLog.critical使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类snslog.SNSLog
的用法示例。
在下文中一共展示了SNSLog.critical方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init_oauth2_client
# 需要导入模块: from snslog import SNSLog [as 别名]
# 或者: from snslog.SNSLog import critical [as 别名]
def __init_oauth2_client(self):
if self.auth_client == None:
try:
self.auth_client = oauth.APIClient(self.jsonconf.app_key, \
self.jsonconf.app_secret, self.auth_info.callback_url, \
auth_url = self.auth_info.auth_url)
except:
logger.critical("auth_client init error")
raise snserror.auth