diff --git a/bottlecap/src/traces/trace_agent.rs b/bottlecap/src/traces/trace_agent.rs index 57e6fd4c6..c617def85 100644 --- a/bottlecap/src/traces/trace_agent.rs +++ b/bottlecap/src/traces/trace_agent.rs @@ -219,7 +219,6 @@ impl TraceAgent { tags_provider: Arc, version: ApiVersion, ) -> http::Result> { - debug!("Received traces to process"); let (parts, body) = req.into_parts(); if let Some(response) = http_utils::verify_request_content_length( diff --git a/bottlecap/src/traces/trace_processor.rs b/bottlecap/src/traces/trace_processor.rs index 5974c7d17..123c6a066 100644 --- a/bottlecap/src/traces/trace_processor.rs +++ b/bottlecap/src/traces/trace_processor.rs @@ -11,7 +11,6 @@ use ddcommon::Endpoint; use std::str::FromStr; use std::sync::Arc; -use tracing::debug; use crate::config; use crate::traces::{ @@ -122,7 +121,6 @@ impl TraceProcessor for ServerlessTraceProcessor { traces: Vec>, body_size: usize, ) -> SendData { - debug!("Received traces to process"); let payload = trace_utils::collect_trace_chunks( V07(traces), &header_tags,