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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
"""
异步日志管理器
"""
import logging
import queue
import threading
import time
 
from log_module.log import logger_debug, logger_system, printlog
from utils import tool
 
 
class AsyncLogManager:
 
    def __init__(self):
        self.__log_queue = queue.Queue()
 
    def __add_log(self, logger, method, *args):
        self.__log_queue.put_nowait((logger, time.time(), method, args))
 
    def add_log(self, data):
        self.__log_queue.put_nowait(data)
 
    def debug(self, logger, *args):
        self.__add_log(logger, "debug", *args)
 
    def info(self, logger, *args):
        self.__add_log(logger, "info", *args)
 
    def warning(self, logger, *args):
        self.__add_log(logger, "warning", *args)
 
    def error(self, logger, *args):
        self.__add_log(logger, "error", *args)
 
    def exception(self, logger, *args):
        self.__add_log(logger, "exception", *args)
 
    # 运行同步日志
    def run_sync(self, add_to_common_log=False):
        printlog("run_sync", add_to_common_log)
        logger_system.info(f"run_sync 线程ID:{tool.get_thread_id()}")
        while True:
            # val = self.__log_queue.get()
            try:
                val = self.__log_queue.get()
                if not add_to_common_log:
                    time_s = val[1]
                    cmd = val[2]
                    method = getattr(val[0], cmd)
                    d = list(val[3])
                    d[0] = f"[{tool.to_time_str(int(time_s))}.{str(time_s).split('.')[1][:6]}] " + d[0]
                    d = tuple(d)
                    method(*d)
                else:
                    _common_log.add_log(val)
            except Exception as e:
                logging.exception(e)
 
 
l2_data_log = AsyncLogManager()
 
huaxin_l2_log = AsyncLogManager()
 
_common_log = AsyncLogManager()
 
 
def debug(logger, *args):
    _common_log.debug(logger, *args)
 
 
def info(logger, *args):
    _common_log.info(logger, *args)
 
 
def warning(logger, *args):
    _common_log.warning(logger, *args)
 
 
def error(logger, *args):
    _common_log.error(logger, *args)
 
 
def exception(logger, *args):
    _common_log.exception(logger, *args)
 
 
# 运行同步日志
def run_sync():
    logger_system.info(f"async_log 线程ID:{tool.get_thread_id()}")
    _common_log.run_sync()
 
 
if __name__ == "__main__":
    # info(logger_debug, "*-{}", "test")
    asyncLogManager = AsyncLogManager()
    asyncLogManager.info(logger_debug, "测试123")
    threading.Thread(target=lambda: asyncLogManager.run_sync(), daemon=True).start()
    time.sleep(1)
    # info(logger_debug, "002375")
    run_sync()