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

58 lines
1.6 KiB
Python
Raw Normal View History

import logging
from logging.handlers import RotatingFileHandler
import time
from datetime import datetime
class Log(object):
def __init__(self) :
self.logger = logging.getLogger()
self.logger.setLevel(logging.DEBUG)
2014-03-03 12:13:00 +00:00
formatter = logging.Formatter('%(asctime)-15s :: %(levelname)s :: %(message)s')
file_handler = RotatingFileHandler('activity.log', 'a', 1000000, 1)
file_handler.setLevel(logging.DEBUG)
file_handler.setFormatter(formatter)
self.logger.addHandler(file_handler)
2014-03-03 12:13:00 +00:00
file_handler_error = RotatingFileHandler('error.log', 'a', 1000000, 1)
file_handler_error.setLevel(logging.ERROR)
file_handler_error.setFormatter(formatter)
self.logger.addHandler(file_handler_error)
def enregDansLog(self,pLog,pMsg,pIP):
with open("fichier/log", "a") as dest :
d = datetime.now().strftime("%c")
dest.write("%s,%s,%s,%s\n" % (d,pLog,pMsg,pIP))
2014-03-03 11:11:19 +00:00
def printL(self,pMsg,pLvl):
2014-03-03 11:17:14 +00:00
self.logger.log(pLvl,pMsg)
2014-03-03 11:12:19 +00:00
if pLvl == 10 :
2014-03-03 12:13:00 +00:00
print bcolors.DEBUG,
2014-03-03 11:11:19 +00:00
elif pLvl == 20 :
2014-03-03 12:13:00 +00:00
print bcolors.INFO,
2014-03-03 11:11:19 +00:00
elif pLvl == 30 :
2014-03-03 12:13:00 +00:00
print bcolors.WARNING,
2014-03-03 11:11:19 +00:00
elif pLvl == 40 :
2014-03-03 12:13:00 +00:00
print bcolors.FAIL,
2014-03-03 11:11:19 +00:00
print pMsg
2014-03-03 12:13:00 +00:00
print bcolors.ENDC,
class bcolors:
NOTSET = '\033[95m'
DEBUG = '\033[94m'
INFO = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
def disable(self):
self.HEADER = ''
self.OKBLUE = ''
self.OKGREEN = ''
self.WARNING = ''
self.FAIL = ''
self.ENDC = ''