标签:
要想使用好logging模块首先要知道它的使用流程:
fh=logging.FileHandler(filename,filemode),
fh.setLevel(logging.DEBUG)
fh.setFormatter(formatter)
logger.addHandler(fh)
logger.info("i‘m very good")
在使用logging过程中遇到的坑:
标签:
原文地址:http://www.cnblogs.com/leemiracle/p/5490727.html