标签:打印日志格式
import logging
此模块用来打印输出格式
logging.basicConfig(level=logging.INFO,format=‘%(asctime)s %(levelname)s [%(threadName)s] - %(message)s‘)
level:
logging.INFO:日志级别
format:
%(asctime)s:打印出时间
%(levelname)s:打印出日志级别
%(threadName)s:线程名字
%(message)s:打出输出消息
打印出输出信息:
logging.info(‘test‘)
本文出自 “激情燃烧的岁月” 博客,请务必保留此出处http://liuzhengwei521.blog.51cto.com/4855442/1892235
标签:打印日志格式
原文地址:http://liuzhengwei521.blog.51cto.com/4855442/1892235