【技巧】Python日志中logging的使用(2)

【技巧】Python日志中logging的使用(2)

  2. logging介绍Python的logging模块提供了通用的日志系统,可以方便第三方模块或者是应用使用。这个模块提供不同的日志级别,并可以采用不同的方式记录日志,比如文件,HTTP GET/POST,SMTP,Socket等,甚至可以自己实现具体的日志记录方式。

  logging模块与log4j的机制是一样的,只是具体的实现细节不同。模块提供logger,handler,filter,formatter. logger:提供日志接口,供应用代码使用。logger最长用的操作有两类:配置和发送日志消息。可以通过logging.getLogger(name)获取logger对象,如果不指定name则返回root对象,多次使用相同的name调用getLogger方法返回同一个logger对象。

  handler:将日志记录(log record)发送到合适的目的地(destination),比如文件,socket等。一个logger对象可以通过addHandler方法添加0 到多个handler,每个handler又可以定义不同日志级别,以实现日志分级过滤显示。

  filter:提供一种优雅的方式决定一个日志记录是否发送到handler. formatter:指定日志记录输出的具体格式。formatter的构造方法需要两个参数:消息的格式字符串和日期字符串,这两个参数都是可选的。

  与log4j类似,logger,handler和日志消息的调用可以有具体的日志级别(Level),只有在日志消息的级别大于logger和handler的级别。

  [python] view plaincopyprint?

  import logging import logging.handlers

  LOG_FILE = ‘tst.log’

  handler = logging.handlers.RotatingFileHandler(LOG_FILE,maxBytes = 1024*1024,backupCounts = 5) # 实例化handler fmt = ‘%(asctime)s - %(filename)s:%(lineno)s - %(name)s - %(message)s’

  formatter = logging.Formatter(fmt) # 实例化formatter handler.setFormatter(formatter) # 为handler添加formatter

  logger = logging.getLogger(‘tst’) # 获取名为tst的logger logger.addHandler(handler) # 为logger添加handler logger.setLevel(logging.DEBUG)

  logger.info(‘first info message’)

  logger.debug(‘first debug message’)

  输出:[plain] view plaincopyprint?

  2012-03-04 23:21:59,682 - log_test.py:16 - tst - first info message 2012-03-04 23:21:59,682 - log_test.py:17 - tst - first debug message关于formatter的配置,采用的是%(《dict key》)s的形式,就是字典的关键字替换。提供的关键字包括:Format Description %(name)s Name of the logger (logging channel)。

  %(levelno)s Numeric logging level for the message (DEBUG,INFO,WARNING,ERROR,CRITICAL)。

  %(levelname)s Text logging level for the message (‘DEBUG’,‘INFO’,‘WARNING’,‘ERROR’,‘CRITICAL’)。

  %(pathname)s Full pathname of the source file where the logging call was issued (if available)。

  %(filename)s Filename portion of pathname. %(module)s Module (name portion of filename)。

  %(funcName)s Name of function containing the logging call. %(lineno)d Source line number where the logging call was issued (if available)。

  %(created)f Time when the LogRecord was created (as returned by time.time())。

  %(relativeCreated)d Time in milliseconds when the LogRecord was created,relative to the time the logging module was loaded. %(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)。

  %(msecs)d Millisecond portion of the time when the LogRecord was created. %(thread)d Thread ID (if available)。

  %(threadName)s Thread name (if available)。

  %(process)d Process ID (if available)。

  %(message)s The logged message,computed as msg % args.这个是摘自官网,提供了很多信息。

  2012-03-06 00:09:35,713 - simpleExample - DEBUG - debug message 2012-03-06 00:09:35,713 - simpleExample - INFO - info message 2012-03-06 00:09:35,714 - simpleExample - WARNING - warn message 2012-03-06 00:09:35,714 - simpleExample - ERROR - error message 2012-03-06 00:09:35,714 - simpleExample - CRITICAL - critical message这里还要明确一点,logger对象是有继承关系的,比如名为a.b和a.c的logger都是名为a的子logger,并且所有的logger对象都继承于root.如果子对象没有添加handler等一些配置,会从父对象那继承。这样就可以通过这种继承关系来复用配置。

  •  
  • 在线报名

 
     姓 名:
     性 别:
     联系电话:
     qq:
    验证码:
 
·报名须知·
点击咨询 点击咨询
点击咨询 点击咨询 点击这里给我发消息
  •  
  • 学员作品
学员作品
Oracle学校 | Oracle学校 | 技术学堂 | Oracle简介 | 关于中心 | 人才加盟 | 联系我们 | 点击咨询
2012Copyright © 北京市大兴区华腾职业技能培训学校 版权所有 友情链接QQ
学校地址:北京市海淀区北三环中路27号 商房大厦六层 马甸桥东(国美电器楼上)
报名热线:400-690-8516 010-82013489 82015141 京ICP备11042126号 京公网安备110102004701