-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogger.py
34 lines (28 loc) · 1.19 KB
/
logger.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
# -*- coding: utf-8 -*-
import logging
from config import log_file
class Logger(object):
""" module for logging the executions and statements """
@staticmethod
def defaults(name, logfile=log_file, debug_level='DEBUG', output_stream=False):
""" default configuration settings in the method """
if debug_level is "INFO":
debug_level = logging.INFO
elif debug_level is "DEBUG":
debug_level = logging.DEBUG
else:
debug_level = logging.INFO
# log file configuration
logging.basicConfig(
level=debug_level,
filename=logfile,
filemode='a',
format='[%(asctime)s] - %(name)s - %(levelname)s - %(message)s',
datefmt='%d/%b/%Y %H:%M:%S')
if type(output_stream) is bool and output_stream:
# console output
console = logging.StreamHandler()
console.setLevel(debug_level)
console.setFormatter(logging.Formatter('%(name)s - %(levelname)s - %(message)s'))
logging.getLogger('').addHandler(console)
return logging.getLogger("{}".format(name))