From b381f779ae142d4c63c89ed38942d5920e71b87e Mon Sep 17 00:00:00 2001 From: Administrator <admin@example.com> Date: 星期一, 07 七月 2025 15:12:10 +0800 Subject: [PATCH] 禁止扫入下单 --- build_server.py | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/build_server.py b/build_server.py index 5c261e9..cf6cfc6 100644 --- a/build_server.py +++ b/build_server.py @@ -5,7 +5,7 @@ import socketserver import subprocess from http.server import BaseHTTPRequestHandler -from log_module.log import logger_system, logger_request_api +from log_module.log import logger_system, logger_request_api, logger_debug from utils import tool @@ -35,6 +35,7 @@ root_dir = ps_dict.get("dir") script = ps_dict.get("script") output_file = ps_dict.get("output") + logger_debug.info(f"缂栬瘧: dir - 銆恵root_dir}銆�, script - 銆恵script}銆�, output - 銆恵output_file}銆� ") output_file_path = os.path.join(root_dir, output_file) if os.path.exists(output_file_path): os.remove(output_file_path) -- Gitblit v1.8.0