本文整理匯總了Python中tools.log.Log.debug方法的典型用法代碼示例。如果您正苦於以下問題:Python Log.debug方法的具體用法?Python Log.debug怎麽用?Python Log.debug使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類tools.log.Log
的用法示例。
在下文中一共展示了Log.debug方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: push_all
# 需要導入模塊: from tools.log import Log [as 別名]
# 或者: from tools.log.Log import debug [as 別名]
def push_all(self):
Log.info("<<POI push all>> start")
if not IS_PUSH_TO_POI:
return
from models.merchant import MerchantModel
merchants = MerchantModel.get_all(self.session)
for merchant in merchants:
try:
self.push_by_merchant(merchant)
except Exception as e:
Log.debug(traceback.format_exc())
示例2: Log
# 需要導入模塊: from tools.log import Log [as 別名]
# 或者: from tools.log.Log import debug [as 別名]
# encoding: utf-8
__author__ = 'zhanghe'
from tools.log import Log
# 實例化,修改日誌文件名稱,加載新配置
log_test = Log()
log_test.log_filename = 'log_test.log'
log_test.log_config()
# 測試
log_test.debug('This is debug message')
log_test.info('This is info message')
log_test.warning('This is warning message')
log_test.get_memory_usage()
print log_test.memory_usage
"""
測試結果:
內存使用4.14M
4.14M
"""