chore: logging cleanup (#1196)

Update what we log to make `RUST_LOG=debug` a bit easier to work with.
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack](https://reviewstack.dev/openai/codex/pull/1196).
* #1167
* __->__ #1196
This commit is contained in:
Michael Bolin
2025-06-02 13:31:33 -07:00
committed by GitHub
parent 7896b1089d
commit e40f86b446
2 changed files with 14 additions and 3 deletions

View File

@@ -93,7 +93,6 @@ pub(crate) fn create_tools_json_for_responses_api(
.map(|(name, tool)| mcp_tool_to_openai_tool(name, tool)),
);
tracing::debug!("tools_json: {}", serde_json::to_string_pretty(&tools_json)?);
Ok(tools_json)
}