• 主页

  • 投资

  • IT

    🔥
  • 设计

  • 销售

关闭

返回栏目

关闭

返回python栏目

82 - 自带库 - logging - 日志

作者:

贺及楼

成为作者

更新日期:2024-10-27 18:14:30

logging - 日志

logging 库简介

Python 的 logging 库用于实现日志记录功能。它允许程序生成日志信息,帮助开发者监控应用程序的运行状态。logging 库支持不同级别的日志(如DEBUG、INFO、WARNING、ERROR、CRITICAL),可以输出到控制台、文件或其他处理器。它还允许设置日志格式和处理器,使得日志管理灵活且强大。这个库在调试程序、记录用户操作、监控系统运行等方面非常有用。

引入

  1. import logging

日志级别汇总

日志等级(level) 中文 应用环境 描述 应用环境
DEBUG 调试 开发、测试、预发布环境 最详细的日志信息,典型应用场景是 问题诊断 开发或部署调试,尽可能详细的日志信息
1、对系统每一步的运行状态进行精确的记录
INFO 信息 开发、测试、预发布环境 记录关键信息,确认按预期进行 开发或部署调试,尽可能详细的日志信息
1、Service方法中对于系统/业务状态的变更
2、调用参数和调用结果
3、定时任务的开始执行时间与结束执行时间
WARNING 警告 生产环境 记录不预期的信息,但是此时应用程序还是正常运行的 应用上线或部署生产环境,降低机器的I/O压力和提高获取错误日志信息的效率
1、系统状态 - 磁盘可用空间较低
2、系统状态 - 即将接近临界值cpu、存储超80%
3、用户行为 - 用户输入参数错误
ERROR 错误 生产环境 由于一个更严重的问题导致某些功能不能正常运行时记录的信息 应用上线或部署生产环境,降低机器的I/O压力和提高获取错误日志信息的效率
1、打开配置文件失败
2、第三方对接的异常(请求的url、参数不要包括密码)
3、第三方对接的异常(包括返回错误码)
4、SQL异常
5、业务异常
6、定时任务异常
CRITICAL 极严重 生产环境 当发生严重错误,导致应用程序不能继续运行时记录的信息 应用上线或部署生产环境,降低机器的I/O压力和提高获取错误日志信息的效率

配置选项汇总

  1. 0、配置方式:
  2. python代码配置、
  3. 配置文件:`logging.config.fileConfig('logging.conf')`
  4. 字典配置`dictConfig()`
  5. 1、配置输出日志格式format(字符串)
  6. 2、配置输出形式(日志/控制台)Handler
  7. 3、配置输出形式的级别Level

配置 logging.config.fileConfig('logging.conf') 文件

  1. # 读取日志配置文件内容
  2. logging.config.fileConfig('logging.conf')
  3. # 读取日志配置文件内容
  4. logging.config.fileConfig(filename='my.log',
  5. level=logging.DEBUG,
  6. format=LOG_FORMAT,
  7. datefmt=DATE_FORMAT)

配置输出日志格式format(字符串)

中文 Attribute name Format Description
args You shouldn’t need to format this yourself. The tuple of arguments merged into msg to produce message, or a dict whose values are used for the merge (when there is only one argument, and it is a dictionary).
时间 asctime %(asctime)s Human-readable time when the LogRecord was created. By default this is of the form ‘2003-07-08 16:49:45,896’ (the numbers after the comma are millisecond portion of the time).
created %(created)f Time when the LogRecord was created (as returned by time.time()).
exc_info You shouldn’t need to format this yourself. Exception tuple (à la sys.exc_info) or, if no exception has occurred, None.
filename %(filename)s Filename portion of pathname.
funcName %(funcName)s Name of function containing the logging call.
日志级别 levelname %(levelname)s Text logging level for the message (‘DEBUG’, ‘INFO’, ‘WARNING’, ‘ERROR’, ‘CRITICAL’).
levelno %(levelno)s Numeric logging level for the message (DEBUG, INFO, WARNING, ERROR, CRITICAL).
源代码行号 lineno %(lineno)d Source line number where the logging call was issued (if available).
日志内容 message %(message)s The logged message, computed as msg % args. This is set when Formatter.format() is invoked.
module %(module)s Module (name portion of filename).
msecs %(msecs)d Millisecond portion of the time when the LogRecord was created.
msg You shouldn’t need to format this yourself. The format string passed in the original logging call. Merged with args to produce message, or an arbitrary object (see Using arbitrary objects as messages).
日志器名称 name %(name)s Name of the logger used to log the call.
pathname %(pathname)s Full pathname of the source file where the logging call was issued (if available).
进程ID process %(process)d Process ID (if available).
processName %(processName)s Process name (if available).
relativeCreated %(relativeCreated)d Time in milliseconds when the LogRecord was created, relative to the time the logging module was loaded.
stack_info You shouldn’t need to format this yourself. Stack frame information (where available) from the bottom of the stack in the current thread, up to and including the stack frame of the logging call which resulted in the creation of this record.
线程ID thread %(thread)d Thread ID (if available).
threadName %(threadName)s Thread name (if available).
  1. # 例子:
  2. '%(asctime)s - %(name)s - %(levelname)s - %(message)s'
  3. 时间、名称、级别、信息
  4. 2005-03-19 15:10:26,618 - simple_example - DEBUG - debug message

配置输出形式(日志/控制台)Handler

  1. # 1、创建一个logger
  2. logger = logging.getLogger('mylogger')
  3. logger.setLevel(logging.DEBUG)
  4. fh = logging.FileHandler('test.log') # 2、创建一个handler,用于写入日志文件
  5. fh.setLevel(logging.DEBUG) # 日志文件记录级别
  6. ch = logging.StreamHandler() # 再创建一个handler,用于输出到控制台
  7. ch.setLevel(logging.DEBUG) # 控制台记录级别
  8. # 3、定义handler的输出格式(formatter)
  9. formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
  10. # 4、给handler添加formatter
  11. fh.setFormatter(formatter)
  12. ch.setFormatter(formatter)
  13. # 5、给logger添加handler
  14. logger.addHandler(fh)
  15. logger.addHandler(ch)

配置 logging.basicConfig() 参数

  1. logging.basicConfig(**kwargs)

添加日志建议顺序

  1. ERROR - 打开配置文件失败(1%)
  2. WARNING - 系统状态 - 磁盘可用空间较低(1%)
  3. WARNING - 系统状态 - 即将接近临界值cpu、存储超80%(1%)
  4. ERROR - SQL异常(10%)(如果每个表的操作都分好类分好文件,那么增加日志的速度就会很快)
  5. ERROR - 定时任务异常(10%)
  6. ERROR - 第三方对接的异常(包括返回错误码)(10%)
  7. INFO - 定时任务的开始执行时间与结束执行时间(10%)
  8. ERROR - 业务异常(50%)
  9. INFO - 调用参数和调用结果(50%)
  10. WARNING - 用户行为 - 用户输入参数错误(30%)
  11. INFO - Service方法中对于系统/业务状态的变更(50%)

使用

  1. import logging
  2. # 创建一个日志器logger
  3. logger = logging.getLogger('name')
  4. logging.debug("This is a debug log.")
  5. logging.info("This is a info log.")
  6. logging.warning("This is a warning log.")
  7. logging.error("This is a error log.")
  8. logging.critical("This is a critical log.")
  9. # 也可以这样写:
  10. logging.log(logging.DEBUG, "This is a debug log.")
  11. logging.log(logging.INFO, "This is a info log.")
  12. logging.log(logging.WARNING, "This is a warning log.")
  13. logging.log(logging.ERROR, "This is a error log.")
  14. logging.log(logging.CRITICAL, "This is a critical log.")

查看日志

vscode插件:安装Filter line
复制:filter line by config file
vscode文件:ctrl + shift + p
粘贴:filter line by config file
会自动再打开已经格式化的logfile