用python.twisted.logfile每天记录日志,并用不记录stdout中的内容

时间:2022-06-09 00:28:43

#导入的头

from twisted.python import log
from twisted.python.logfile import *

#开始记录,输入日志名和存放的路径,setStdout为0不记录stdout的内容,默认setStdout=1,记录print的输出

log.startLogging(DailyLogFile("xxx.txt","d:/"),setStdout=0)

#记录信息log.msg("aaaaaaaaa")

做个标记