From b4480ad745510c8e81c88c20fb67cb65eef79cc5 Mon Sep 17 00:00:00 2001 From: Administrator <admin@example.com> Date: 星期四, 17 八月 2023 11:05:23 +0800 Subject: [PATCH] ++++++++++++++++ bug修复 --- huaxin_api/l1_client.py | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/huaxin_api/l1_client.py b/huaxin_api/l1_client.py index 50df6b9..994d760 100644 --- a/huaxin_api/l1_client.py +++ b/huaxin_api/l1_client.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- import json import logging +import os import threading import time @@ -8,6 +9,7 @@ import xmdapi from huaxin_api import tool from huaxin_api.client_network import SendResponseSkManager +from log_module.log import logger_system level1_data_dict = { @@ -219,9 +221,10 @@ def run_async(pipe_l2): + logger_system.info("L1杩涚▼ID锛�", os.getpid()) t1 = threading.Thread(target=lambda: run(pipe_l2), daemon=True) t1.start() if __name__ == "__main__": - run(None) + pass -- Gitblit v1.8.0