forked from robcarver17/pysystemtrade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog_to_screen.py
62 lines (49 loc) · 1.74 KB
/
log_to_screen.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
from syslogdiag.pst_logger import pst_logger
from syslogdiag.log_entry import logEntry
class logtoscreen(pst_logger):
def log_handle_caller(
self, msglevel: int, text: str, attributes: dict, log_id: int
):
"""
>>> log=logtoscreen("base_system", log_level="off") ## this won't do anything
>>> log.log("this wont print")
>>> log.terse("nor this")
>>> log.warn("this will")
this will
>>> log.error("and this")
and this
>>> log=logtoscreen(log, log_level="terse")
>>> log.msg("this wont print")
>>> log.terse("this will")
this will
>>> log=logtoscreen("",log_level="on")
>>> log.msg("now prints every little thing")
now prints every little thing
"""
log_level = self.logging_level
log_entry = logEntry(
text, msglevel=msglevel, attributes=attributes, log_id=log_id
)
if msglevel == 0:
if log_level == "on":
print(log_entry)
# otherwise do nothing - either terse or off
elif msglevel == 1:
if log_level in ["on", "terse"]:
print(log_entry)
# otherwise do nothing - either terse or off
elif msglevel == 2:
print(log_entry)
elif msglevel == 3:
print(log_entry)
elif msglevel == 4:
raise Exception(log_entry)
def get_next_log_id(self) -> int:
last_id = self.get_last_used_log_id()
next_id = last_id + 1
self.update_log_id(next_id)
return next_id
def get_last_used_log_id(self):
return getattr(self, "_log_id", 0)
def update_log_id(self, log_id):
self._log_id = log_id