如何用python写监控日志函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何用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写监控日志函数的主要内容,如果未能解决你的问题,请参考以下文章