接口自动化--打印log到文档

Posted 卡卡罗纳

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了接口自动化--打印log到文档相关的知识,希望对你有一定的参考价值。

这一部分实现比较简单,直接上代码:

 1 import logging
 2 
 3 class Logger():
 4     def __init__(self,content,*raw):
 5         self.content = content
 6 
 7     def log(self):
 8         logging.basicConfig(level=logging.DEBUG,
 9                             format=%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)s,
10                             datefmt=%a, %d %b %Y %H:%M:%S,
11                             filename=mylog.log,
12                             filemode=w)
13         logging.info(self.content)

 打印出来的效果把代码拷出试一下就知道了

以上是关于接口自动化--打印log到文档的主要内容,如果未能解决你的问题,请参考以下文章

我的Android进阶之旅NDK开发之在C++代码中使用Android Log打印日志,打印出C++的函数耗时以及代码片段耗时详情

Python接口自动化浅析logging日志原理及模块操作流程

Python接口自动化浅析logging日志原理及模块操作流程

Python接口自动化之logging日志

3D打印Marlin2.0固件源代码分析之如何使用LOG接口调试代码

3D打印Marlin2.0固件源代码分析之如何使用LOG接口调试代码