This repository has been archived on 2021-09-15. You can view files and clone it, but cannot push or open issues or pull requests.
DUT2PTUT/m/log.py
sidya82 f1904ed512 modifié: m/fichier/conf
modifié:         m/loadConf.py
	nouveau fichier: m/log.py
	modifié:         m/login.py
	modifié:         superTornado.py
2014-03-02 22:57:48 +01:00

9 lines
260 B
Python

import time
from datetime import datetime
class Log(object):
def enregDansLog(self,pLog,pMsg,pIP):
with open("m/fichier/log", "a") as dest :
d = datetime.now().strftime("%c")
dest.write("%s,%s,%s,%s\n" % (d,pLog,pMsg,pIP))