首页 > 代码库 > 如何用python写监控日志函数

如何用python写监控日志函数

def write_log(username,operation):
‘‘‘
写日志函数
:param username:用户名
:param operation:用户的操作信息
:return:
‘‘‘
w_time = time.strftime(‘%Y-%m-%d %H%M%S‘)
with open(‘log.txt‘,‘a+‘) as fw:
log_content = ‘%s %s %s \n‘%(w_time,username,operation)
fw.write(log_content)


如何用python写监控日志函数