From c558ca81fedf854a7c3cdef55858f0658d086ad5 Mon Sep 17 00:00:00 2001 From: alexgallotta <5581237+alexgallotta@users.noreply.github.com> Date: Tue, 19 Nov 2024 13:29:04 -0500 Subject: [PATCH] remove useless debug log --- bottlecap/src/traces/trace_agent.rs | 1 - bottlecap/src/traces/trace_processor.rs | 2 -- 2 files changed, 3 deletions(-) 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,