-
Notifications
You must be signed in to change notification settings - Fork 0
/
myLOGLib.py
69 lines (55 loc) · 1.56 KB
/
myLOGLib.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
67
68
69
#!/usr/bin/env python3
# Auteur : Patrick Pinard
# Date : 3.5.2022
# Objet : gestion des LOG
# Source : myLOGLib.py
# Version : 1.1 (augmentation du nombre maximum d'event sauvegardé à 1000)
# Statut : fonctionne parfaitement
# -*- coding: utf-8 -*-
# Clavier MAC :
# {} = "alt/option" + "(" ou ")"
# [] = "alt/option" + "5" ou "6"
# ~ = "alt/option" + n
# \ = Alt + Maj + /
import datetime
import logging
DEBUG = True # sauvegarde tous les événements dans fichier de log
VERBOSE = False # mode bavard
PATH = "/home/pi/mybox/"
LOGFILENAME = PATH + "mybox.log" # fichier de LOG par defaut
LOGLEVEL = DEBUG
FILEMODE = "w"
RELEASE = "V1.0"
events = []
id = 0
MAXSIZE = 1000
# LOG LEVEL = Critical, Error, Warning, Info, Debug, Not Set
logging.basicConfig(
filename=LOGFILENAME,
filemode=FILEMODE,
level=LOGLEVEL,
format="%(asctime)s - %(levelname)s - %(message)s",
)
logging.info("--- { start logging : " + LOGFILENAME + " } ---")
def LogEvent(message):
"""
Ecriture de message dans fichier de LOG sur disque.
Si VERBOSE est activé, copie sur console.
"""
global id
now = datetime.datetime.now()
d = now.strftime("%d.%m.%Y")
t = now.strftime("%H:%M:%S")
id = id + 1
event = {"id": id, "date": d, "time": t, "message": message}
events.insert(0, event)
l = len(events)
if l > MAXSIZE - 1:
events.pop(l - 1)
if DEBUG:
logging.info(message)
if VERBOSE:
print(message)
return
if __name__ == "__main__":
LogEvent("test de LogEvent " + RELEASE)