Skip to content

Commit aca088e

Browse files
ZhiXiao-Linclaude
andcommitted
fix(llm): remove debug log that exposes request body
Co-Authored-By: Kiro <noreply@anthropic.com>
1 parent 05a55ca commit aca088e

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

core/src/llm/http.rs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -101,12 +101,6 @@ impl HttpClient for ReqwestHttpClient {
101101
headers: Vec<(&str, &str)>,
102102
body: &serde_json::Value,
103103
) -> Result<StreamingHttpResponse> {
104-
tracing::debug!(
105-
"HTTP POST streaming to {}: {}",
106-
url,
107-
serde_json::to_string_pretty(body)?
108-
);
109-
110104
let mut request = self.client.post(url);
111105
for (key, value) in headers {
112106
request = request.header(key, value);

0 commit comments

Comments
 (0)