本文整理汇总了Python中logger.Log.debug方法的典型用法代码示例。如果您正苦于以下问题:Python Log.debug方法的具体用法?Python Log.debug怎么用?Python Log.debug使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类logger.Log
的用法示例。
在下文中一共展示了Log.debug方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get
# 需要导入模块: from logger import Log [as 别名]
# 或者: from logger.Log import debug [as 别名]
data = None
try:
req = urllib2.Request(url=requrl, data=param)
res = urllib2.urlopen(url=req,timeout=to)
data = res.read()
except HTTPError, e:
print "Error code: %d" % e.code
logger.debug("Error code: %d" % e.code)
except URLError, e:
print "Error reason: %s" % e.reason
logger.debug("Error reason: %s" % e.reason)
finally:
return data
@staticmethod
def get(requrl, param, to=5):
param = urllib.urlencode(param)
requrl = requrl + '?' + param
data = None
try:
req = urllib2.Request(requrl)
res = urllib2.urlopen(url=req,timeout=to)
data = res.read()
except urllib2.HTTPError, e:
logger.debug("Error code: %d" % e.code)
except urllib2.URLError, e:
logger.debug("Error reason: %s" % e.reason)
finally:
return data