1. 程式人生 > >如何用python寫監控日誌函數

如何用python寫監控日誌函數

監控 operation per ret return 監控日誌 time txt 用戶

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寫監控日誌函數