Python logging 基本用法
本文最后更新于:2023年4月15日 下午
本文记录logging模块的用法
创建文件logger.py
1 |
|
调用1
logger.logging.info("%-13s connected: %r" % (ip_address, connected))
%(asctime)s
表示这个位置上是字符串形式的当前时间datefmt='%Y_%m_%d_%H:%M:%S'
指定了时间格式;我们也可以不指定时间格式
查看写出的log文件1
2017-11-23 13:39:35,295 - xxx.py[line:122] INFO [MainWindow] --------- App Starts ---------
Python logging 基本用法
https://blog.rustfisher.com/2017/11/21/Python/Python-logging-use/