logging 日志模块
import logging
logging.warning("user [alex] attempted wrong password more than 3 times"
)...........输出给屏膜
logging.basicConfig(filename=
'example.log'
,level
=
logging.INFO)......................输出给文件
同时输出到屏膜与文件:
logger提供了应用程序可以直接使用的接口;
handler将(logger创建的)日志记录发送到合适的目的输出;
filter提供了细度设备来决定输出哪条日志记录;
formatter决定日志记录的最终输出格式。