码迷,mamicode.com
首页 > 编程语言 > 详细

python+pytest打印日志

时间:2021-01-21 10:53:34      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:turn   模块   debug   ret   info   *args   日期格   mic   file   

使用python自带的logging日志模块

1.简单设置

import logging
# 设置log级别为 info
logging.basicConfig(level=logging.INFO)
# error > debug > info

def run(*args, **kwargs):
    basepage = args[0]
    try:
        logging.info(f"start find:{str(args)},开始找 KWARGS:{str(kwargs)}")
        return fun(*args, **kwargs)

技术图片

2.加入日期格式的日志

import logging

LOG_FORMAT = "%(asctime)s - %(levelname)s - %(message)s"
logging.basicConfig(filename=‘xueqiu.log‘, level=logging.INFO, format=LOG_FORMAT)

python+pytest打印日志

标签:turn   模块   debug   ret   info   *args   日期格   mic   file   

原文地址:https://www.cnblogs.com/panda-123/p/14305592.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!