forked from scriptik/vougen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
verbose.py
58 lines (43 loc) · 1.86 KB
/
verbose.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
# Author: Arturs Laizans
# Package for displaying and saving verbose log
import logging
class Log:
# For initialization, class Log takes 3 arguments: path, logic, file_mode.
# path:
# - False - don't do logging. It won't save anything to file and won't print anything to stdout.
# - True - will print verbose output to stdout.
# - string - will save the verbose output to file named as this string.
# logic:
# - 'OR' - if the path is a string, only saves verbose to file;
# - 'AND' - if the path is string, prints verbose output to stdout and saves to file.
# file_mode:
# - 'a' - appends log to existing file
# - 'w' - creates a new file for logging, if a file with such name already exists, it will be overwritten.
def __init__(self, path, logic, file_mode):
# If logging to file is needed, configure it
if path is not True and type(path) == str:
logging.basicConfig(filename=path, filemode=file_mode,
format='%(asctime)s - %(message)s', level=logging.DEBUG)
# Define different log actions that can be used
def nothing(message):
pass
def to_file(message):
logging.debug(message)
def to_stdout(message):
print(message)
def both(message):
print(message)
logging.debug(message)
# Set appropriate action depending on path and logic values
if not path:
self.func = nothing
elif path is True:
self.func = to_stdout
elif path is not True and type(path) == str and logic == 'OR':
self.func = to_file
elif path is not True and type(path) == str and logic == 'AND':
self.func = both
else:
self.func = to_stdout
def __call__(self, message):
self.func(message)