-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlog.py
36 lines (31 loc) · 1.01 KB
/
log.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
from datetime import datetime
class Log:
def error(self, error):
try:
with open('logs.txt', 'a') as file:
text = '[' + str(datetime.now()) + '] ' + error
file.write(text + '\n')
except Exception:
pass
def addPerson(self, name):
try:
with open('logs.txt', 'a') as file:
text = '[' + str(datetime.now()) + '] added ' + name
file.write(text + '\n')
except Exception:
pass
def successfulAnalyse(self):
try:
with open('logs.txt', 'a') as file:
text = '[' + str(datetime.now()) + '] successful analysis'
file.write(text + '\n')
except Exception:
pass
class Console:
def write(self, textC):
try:
with open('console.txt', 'a') as file:
text = '[' + str(datetime.now()) + '] ' + textC
file.write(text + '\n')
except Exception:
pass