-
Notifications
You must be signed in to change notification settings - Fork 0
/
logs_numeric_functions.log
80 lines (80 loc) · 5.27 KB
/
logs_numeric_functions.log
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
2020-04-24 19:52:55,804 || INFO || numeric_functions || 5 + 5 = 10
2020-04-24 19:52:55,804 || INFO || numeric_functions || 5 + 10 = 15
2020-04-24 19:52:55,804 || INFO || numeric_functions || 5 + -10 = -5
2020-04-24 19:52:55,804 || INFO || numeric_functions || 5 / 5 = 1.0
2020-04-24 19:52:55,804 || INFO || numeric_functions || This we gonna log always.
2020-04-24 19:52:55,804 || INFO || numeric_functions || 5 / 10 = 0.5
2020-04-24 19:52:55,804 || INFO || numeric_functions || This we gonna log always.
2020-04-24 19:52:55,804 || INFO || numeric_functions || 5 / -10 = -0.5
2020-04-24 19:52:55,804 || INFO || numeric_functions || This we gonna log always.
2020-04-24 19:52:55,804 || ERROR || numeric_functions || Someone tried to divide by zero!
Traceback (most recent call last):
File "/Users/julius/Documents/Python_Playgrounds/debug_unit/numeric_functions.py", line 27, in divide
result = x / y
ZeroDivisionError: division by zero
2020-04-24 19:52:55,805 || INFO || numeric_functions || This we gonna log always.
2020-04-24 19:52:55,805 || INFO || numeric_functions || 5 * 5 = 25
2020-04-24 19:52:55,805 || INFO || numeric_functions || 5 * 10 = 50
2020-04-24 19:52:55,805 || INFO || numeric_functions || 5 * -10 = -50
2020-04-24 19:52:55,805 || INFO || numeric_functions || 5 - 5 = 0
2020-04-24 19:52:55,805 || INFO || numeric_functions || 5 - 10 = -5
2020-04-24 19:52:55,805 || INFO || numeric_functions || 5 - -10 = 15
2020-04-24 19:53:39,387 || INFO || numeric_functions || 5 + 5 = 10
2020-04-24 19:53:39,387 || INFO || numeric_functions || 5 + 10 = 15
2020-04-24 19:53:39,387 || INFO || numeric_functions || 5 + -10 = -5
2020-04-24 19:53:39,387 || INFO || numeric_functions || 5 / 5 = 1.0
2020-04-24 19:53:39,387 || INFO || numeric_functions || This we gonna log always.
2020-04-24 19:53:39,387 || INFO || numeric_functions || 5 / 10 = 0.5
2020-04-24 19:53:39,388 || INFO || numeric_functions || This we gonna log always.
2020-04-24 19:53:39,388 || INFO || numeric_functions || 5 / -10 = -0.5
2020-04-24 19:53:39,388 || INFO || numeric_functions || This we gonna log always.
2020-04-24 19:53:39,388 || ERROR || numeric_functions || Someone tried to divide by zero!
Traceback (most recent call last):
File "/Users/julius/Documents/Python_Playgrounds/debug_unit/numeric_functions.py", line 27, in divide
result = x / y
ZeroDivisionError: division by zero
2020-04-24 19:53:39,388 || INFO || numeric_functions || This we gonna log always.
2020-04-24 19:53:39,388 || INFO || numeric_functions || 5 * 5 = 25
2020-04-24 19:53:39,388 || INFO || numeric_functions || 5 * 10 = 50
2020-04-24 19:53:39,388 || INFO || numeric_functions || 5 * -10 = -50
2020-04-24 19:53:39,388 || INFO || numeric_functions || 5 - 5 = 0
2020-04-24 19:53:39,388 || INFO || numeric_functions || 5 - 10 = -5
2020-04-24 19:53:39,388 || INFO || numeric_functions || 5 - -10 = 15
2020-04-24 19:54:22,852 || INFO || numeric_functions || 5 + 5 = 10
2020-04-24 19:54:22,852 || INFO || numeric_functions || 5 + 10 = 15
2020-04-24 19:54:22,852 || INFO || numeric_functions || 5 + -10 = -5
2020-04-24 19:54:22,853 || INFO || numeric_functions || 5 / 5 = 1.0
2020-04-24 19:54:22,853 || INFO || numeric_functions || 5 / 10 = 0.5
2020-04-24 19:54:22,853 || INFO || numeric_functions || 5 / -10 = -0.5
2020-04-24 19:54:22,853 || ERROR || numeric_functions || Someone tried to divide by zero!
Traceback (most recent call last):
File "/Users/julius/Documents/Python_Playgrounds/debug_unit/numeric_functions.py", line 27, in divide
result = x / y
ZeroDivisionError: division by zero
2020-04-24 19:54:22,853 || INFO || numeric_functions || 5 * 5 = 25
2020-04-24 19:54:22,853 || INFO || numeric_functions || 5 * 10 = 50
2020-04-24 19:54:22,853 || INFO || numeric_functions || 5 * -10 = -50
2020-04-24 19:54:22,853 || INFO || numeric_functions || 5 - 5 = 0
2020-04-24 19:54:22,853 || INFO || numeric_functions || 5 - 10 = -5
2020-04-24 19:54:22,853 || INFO || numeric_functions || 5 - -10 = 15
2020-04-24 19:58:43,129 || INFO || numeric_functions || 5 + 5 = 10
2020-04-24 19:58:43,129 || INFO || numeric_functions || 5 + 10 = 15
2020-04-24 19:58:43,129 || INFO || numeric_functions || 5 + -10 = -5
2020-04-24 19:58:43,129 || INFO || numeric_functions || 5 / 5 = 1.0
2020-04-24 19:58:43,129 || INFO || numeric_functions || This we gonna log always.
2020-04-24 19:58:43,129 || INFO || numeric_functions || 5 / 10 = 0.5
2020-04-24 19:58:43,129 || INFO || numeric_functions || This we gonna log always.
2020-04-24 19:58:43,129 || INFO || numeric_functions || 5 / -10 = -0.5
2020-04-24 19:58:43,129 || INFO || numeric_functions || This we gonna log always.
2020-04-24 19:58:43,129 || ERROR || numeric_functions || Someone tried to divide by zero!
Traceback (most recent call last):
File "/Users/julius/Documents/Python_Playgrounds/debug_unit/numeric_functions.py", line 27, in divide
result = x / y
ZeroDivisionError: division by zero
2020-04-24 19:58:43,130 || INFO || numeric_functions || This we gonna log always.
2020-04-24 19:58:43,130 || INFO || numeric_functions || 5 * 5 = 25
2020-04-24 19:58:43,130 || INFO || numeric_functions || 5 * 10 = 50
2020-04-24 19:58:43,130 || INFO || numeric_functions || 5 * -10 = -50
2020-04-24 19:58:43,130 || INFO || numeric_functions || 5 - 5 = 0
2020-04-24 19:58:43,130 || INFO || numeric_functions || 5 - 10 = -5
2020-04-24 19:58:43,130 || INFO || numeric_functions || 5 - -10 = 15