refactor: 移除调试用的console.log语句

This commit is contained in:
zhuotianyuan 2026-01-23 16:33:14 +08:00
parent 22a13ce0b8
commit 5f16801f98
1 changed files with 0 additions and 6 deletions

View File

@ -179,12 +179,6 @@ export class FreightwavesService {
'signature': this.generateSignature(data, date),
};
// 记录请求前的详细信息
console.log(`Sending request to: ${this.config.apiBaseUrl}${url}`, JSON.stringify({
headers,
data
}))
console.log('Request data:', `${this.config.apiBaseUrl}${url}`, data, headers);
// 发送请求 - 临时禁用SSL证书验证以解决UNABLE_TO_VERIFY_LEAF_SIGNATURE错误
const response = await axios.post<FreightwavesResponse<T>>(
`${this.config.apiBaseUrl}${url}`,