-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogger.py
More file actions
52 lines (40 loc) · 1.35 KB
/
logger.py
File metadata and controls
52 lines (40 loc) · 1.35 KB
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
import functools
import logging
import logging.config
import yaml
def load_logging_config(config_file: str):
""" Loads logging config from an yaml file
"""
with open(config_file, 'r') as f:
config = yaml.safe_load(f.read())
logging.config.dictConfig(config)
# LoggerFactory to load logger configuration file
class LoggerFactory:
"""
LoggerFactory class.
"""
def __init__(self, config_file='config.yaml'):
"""
Initialize the LoggerFactory class. loads the logging configuration from yaml file. Need to have config.yaml
in the directory
"""
self.config_file = config_file
load_logging_config(config_file)
# Decorator to load yaml based config
def log(config_file: str):
""" function that returns the decorator
"""
def decorator(func):
""" Decorator to load logging config from yaml file
"""
@functools.wraps(func)
def log_wrapper(*args, **kwargs):
""" Wraps the function to load the logging config from config.yaml and
log the function name and arguments
"""
load_logging_config(config_file)
logging.info(
f"{func.__name__} called with args: {args} and kwargs: {kwargs}")
return func(*args, **kwargs)
return log_wrapper
return decorator