log日志模块

Posted yancy03

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了log日志模块相关的知识,希望对你有一定的参考价值。

import logging

# 在logging.basciConfig中指定文件中写入
logging.basicConfig(
level=logging.DEBUG,
format=‘%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)s‘,
datefmt=‘%a, %d %b %Y %H:%M:%S‘,
filename="E:\test_allchips\log\logs\test.log", # 注意xpath指定目录文件
filemode=‘a‘)
logging.debug("User %s is loging" % ‘jeck‘)
logging.info("User %s attempted wrong password" % ‘fuzj‘)
logging.warning("user %s attempted wrong password more than 3 times" % ‘mary‘)
logging.error("select db is timeout")
logging.critical("server is down")

# 打印到屏幕
logging.basicConfig(
level=logging.DEBUG,
format=‘%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)s‘,
datefmt=‘%a, %d %b %Y %H:%M:%S‘)
logging.debug("User %s is loging" % ‘jeck‘)
logging.info("User %s attempted wrong password" % ‘fuzj‘)
logging.warning("user %s attempted wrong password more than 3 times" % ‘mary‘)
logging.error("select db is timeout")
logging.critical("server is down")

logging的四大组件
  • Loggers 提供应用程序可直接使用的接口
  • Handlers 发送日志到适当的目的地
  • Filters 提供了过滤日志信息的方法
  • Formatters 指定日志显示格式

























以上是关于log日志模块的主要内容,如果未能解决你的问题,请参考以下文章

Python日志—Python日志模块logging介绍

python---Logging日志模块

PythonStudy——日志模块 logging

python——logging日志模块

WindowsGUI自动化测试框架搭建-日志模块封装(logging模块)

Python日志输出——logging模块