-
Notifications
You must be signed in to change notification settings - Fork 2
/
logg.py
52 lines (38 loc) · 1.53 KB
/
logg.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python
# -*- coding: utf-8 -*-
__author__ = 'andruss'
import os
import logging
import logging.handlers
# Todo Read log directory from and extension.conf file
logfilename = 'asteracct.log'
logdir = '/opt/asteracct/log/'
class Loggable(object):
"""Class to initialize logging facilities and etc."""
def __init__(self, alog_file_name=logdir + logfilename, alog_level=logging.DEBUG, alog_name="radiusclient"):
self.log_file_name = alog_file_name
self.log_level = alog_level
self.log_name = alog_name
self.logger = self.get_logger
@property
def get_logger(self):
logger = logging.getLogger(self.log_name)
logger.setLevel(self.log_level)
# Log rotation
handler = logging.handlers.TimedRotatingFileHandler(self.log_file_name, when="midnight", backupCount=5)
# handler = logging.FileHandler(self.log_file_name)
logger.addHandler(handler)
formater = logging.Formatter('%(asctime)s %(name)s -%(thread)s %(threadName)s '
' %(module)s - [%(levelname)s] - %(message)s')
handler.setFormatter(formater)
return logger
def log(self, log_line, severity=None):
self.logger.log(severity or self.log_level, log_line)
def info(self, log_line):
self.logger.info(log_line)
def debug(self, log_line):
self.logger.debug(log_line)
def critical(self, log_line):
self.logger.critical(log_line)
def error(self, log_line):
self.logger.error(log_line)