mirror of
https://github.com/openai/codex.git
synced 2026-08-23 13:09:46 +00:00
fix(core) Remove full text websocket trace (#30757)
## Summary This is a follow-up to https://github.com/openai/codex/pull/29432 to remove one additional trace statement that is not being filtered by https://github.com/openai/codex/pull/29457. ## Testing - [x] Unit tests pass
This commit is contained in:
@@ -43,7 +43,6 @@ use tracing::debug;
|
||||
use tracing::error;
|
||||
use tracing::info;
|
||||
use tracing::instrument;
|
||||
use tracing::trace;
|
||||
use tungstenite::extensions::ExtensionsConfig;
|
||||
use tungstenite::extensions::compression::deflate::DeflateConfig;
|
||||
use tungstenite::protocol::WebSocketConfig;
|
||||
@@ -782,8 +781,6 @@ async fn send_websocket_request(
|
||||
telemetry: Option<&Arc<dyn WebsocketTelemetry>>,
|
||||
connection_reused: bool,
|
||||
) -> Result<(), ApiError> {
|
||||
trace!("websocket request: {request_text}");
|
||||
|
||||
let request_start = Instant::now();
|
||||
let result = tokio::time::timeout(
|
||||
idle_timeout,
|
||||
|
||||
Reference in New Issue
Block a user