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 6cdbd96b7f modifié: m/fichier/conf
modifié:         m/log.py
2014-03-03 13:57:07 +01:00

56 lines
1.6 KiB
Python

import logging
from logging.handlers import RotatingFileHandler
import time
from datetime import datetime
class Log(object):
def __init__(self) :
logging.addLevelName(25, "SUCCESS")
self.logger = logging.getLogger()
self.logger.setLevel(logging.DEBUG)
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)
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))
def printL(self,pMsg,pLvl):
self.logger.log(pLvl,pMsg)
if pLvl == 10 :
print bcolors.DEBUG + pMsg + bcolors.ENDC
elif pLvl == 20 :
print bcolors.INFO + pMsg + bcolors.ENDC
elif pLvl == 25 :
print bcolors.SUCCESS + pMsg + bcolors.ENDC
elif pLvl == 30 :
print bcolors.WARNING + pMsg + bcolors.ENDC
elif pLvl == 40 :
print bcolors.FAIL + pMsg + bcolors.ENDC
class bcolors:
DEBUG = '\033[94m'
INFO = '\033[95m'
SUCCESS = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'