python-日志功能
原创
©著作权归作者所有:来自51CTO博客作者linkiang的原创作品,请联系作者获取转载授权,否则将追究法律责任
import logging
logging.basicConfig(filename='d:\\example.log',format='%(asctime)s %(levelname)s:%(message)s', level=logging.DEBUG)
#logging.basicConfig(filename='d:\\example.log',level=logging.DEBUG)
logging.debug('This message should go to the log file')
logging.info('So should this')
logging.warning('And this, too')
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Python-(模块)
Python-笔记(模块)
python 模块 -
python-元组
python-元组
linux 元组 python -
python-习题
python 练习题
python 练习题 -
python-语句
assert语句
Python