-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogger.py
66 lines (52 loc) · 1.35 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#
# IcLogger
#
# Author: Fabio Giachelle <[email protected]>
# URL: <http://nltk.org/>
# License: MIT
"""
IcLogger
This module provides logging functions leveraging on the https://github.com/gruns/icecream python library.
"""
from icecream import ic
class IcLogger:
def __init__(self, print_status=True):
self.print_status = print_status
if not print_status:
ic.disable()
else:
ic.enable()
def log(self, *args):
"""Log arguments passed using the icecream library.
Parameters
----------
*args : list
list of arguments to log
"""
if self.print_status:
ic.enable()
ic(args)
ic.disable()
def get_status(self):
"""Return the current status of the logger.
"""
return self.print_status
def set_status(self, status):
"""Set the new status of the logger.
Parameters
----------
status : boolean
new status for the logger.
"""
self.print_status = status
@staticmethod
def print(*args):
"""Static method that prints always the arguments passed.
Parameters
----------
*args : list
list of arguments to log
"""
ic.enable()
ic(args)
ic.disable()