debug(storage): 添加上传URL调试日志

- 在上传过程中添加HTTP URL的调试日志输出
This commit is contained in:
2026-01-21 14:56:55 +08:00
parent 4d5e57f61b
commit f7ca07b9db

View File

@@ -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: