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

python 日志输出模块--两种方法

时间:2018-03-25 10:38:39      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:实例化   ati   方法   div   warning   cal   post   --   mes   

第一种方法:(推荐)

import logging.handlers


LOG_FILE = r‘tst.log‘

handler = logging.handlers.RotatingFileHandler(LOG_FILE, maxBytes=1024 * 1024, backupCount=5, encoding=‘utf-8‘)  # 实例化handler
fmt = ‘%(asctime)s - %(levelname)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(u‘输出中文试一试‘)
logger.debug(‘first debug message‘)

  第二种方法:

LOG_FORMAT = "%(asctime)s - %(levelname)s - %(message)s"
DATE_FORMAT = "%m/%d/%Y %H:%M:%S %p"

logging.basicConfig(filename=‘my.log‘, level=logging.DEBUG, format=LOG_FORMAT, datefmt=DATE_FORMAT)

logging.debug("This is a debug log.")
logging.info("This is a info log.")
logging.warning("This is a warning log.")
logging.error("This is a error log.")
logging.critical("This is a critical log.")

  

python 日志输出模块--两种方法

标签:实例化   ati   方法   div   warning   cal   post   --   mes   

原文地址:https://www.cnblogs.com/fh-fendou/p/8642770.html

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