Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/client/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,7 @@ async fn handle_plain_proxy(
&state.traffic_config,
)?;

info!(target = %target_host, initial_bytes = %payload.len(),
body_len = %early_data.len(), frames_sent = %frames_sent, "connection initiated");
info!(target = %target_host, "connection initiated");

let response = tokio::time::timeout(
DOWNLOAD_CONNECT_TIMEOUT,
Expand Down
3 changes: 1 addition & 2 deletions src/client/handshake.rs
Original file line number Diff line number Diff line change
Expand Up @@ -291,8 +291,7 @@ pub async fn full_handshake(
&state.traffic_config,
)?;

info!(session_id = %session_id, target = %target_host,
body_len = %early_data.len(), frames_sent = %frames_sent, "PQ tunnel established");
info!(session_id = %session_id, target = %target_host, "PQ tunnel established");

let response = tokio::time::timeout(
DOWNLOAD_CONNECT_TIMEOUT,
Expand Down
5 changes: 2 additions & 3 deletions src/server/handlers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ async fn handle_plaintext_download(
.ok_or_else(|| ServerError::bad_request("missing X-Target header"))?;

span.record("target", target);
info!(user = %user, target = %target, body_len = %early_data.len(), "connection initiated");
info!(user = %user, target = %target, "connection initiated");

let (host, port_str) = target
.rsplit_once(':')
Expand Down Expand Up @@ -382,8 +382,7 @@ async fn handle_pq_download(
return Err(ServerError::bad_request("invalid session cookie format"));
}
let (session_id, enc_target_b64, enc_nonce_b64) = (parts[0], parts[1], parts[2]);
info!(session_id = %session_id, body_len = %early_data.len(),
"session resumption: download request received");
info!(session_id = %session_id, "session resumption: download request received");

let entry = state
.master_store
Expand Down
Loading