From f7ca07b9dba4cd210c3dfb5f7662037780d2cb54 Mon Sep 17 00:00:00 2001 From: Jerry Yan <792602257@qq.com> Date: Wed, 21 Jan 2026 14:56:55 +0800 Subject: [PATCH] =?UTF-8?q?debug(storage):=20=E6=B7=BB=E5=8A=A0=E4=B8=8A?= =?UTF-8?q?=E4=BC=A0URL=E8=B0=83=E8=AF=95=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在上传过程中添加HTTP URL的调试日志输出 --- services/storage.py | 1 + 1 file changed, 1 insertion(+) diff --git a/services/storage.py b/services/storage.py index 99bafc0..ca31313 100644 --- a/services/storage.py +++ b/services/storage.py @@ -69,6 +69,7 @@ def upload_file(url: str, file_path: str, max_retries: int = 5, timeout: int = 6 # 应用 HTTP_REPLACE_MAP 替换 URL http_url = _apply_http_replace_map(url) + logger.debug(f"Uploading to: {http_url}") retries = 0 while retries < max_retries: