Skip to content

Commit a037c4c

Browse files
lym953claude
andcommitted
chore(traces): remove debug logging added during investigation
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent cbc3dee commit a037c4c

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

bottlecap/src/traces/trace_agent.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,6 @@ impl TraceAgent {
323323
}
324324

325325
async fn stats(State(state): State<StatsState>, request: Request) -> Response {
326-
debug!("TRACE_AGENT | stats request: {request:?}");
327326
match state
328327
.stats_processor
329328
.process_stats(request, state.stats_tx)
@@ -505,8 +504,6 @@ impl TraceAgent {
505504
let tracer_header_tags: libdd_trace_utils::tracer_header_tags::TracerHeaderTags<'_> =
506505
(&parts.headers).into();
507506

508-
debug!("TRACE_AGENT | tracer_header_tags: {tracer_header_tags:?}");
509-
510507
let (body_size, mut traces): (usize, Vec<Vec<pb::Span>>) = match version {
511508
ApiVersion::V04 => {
512509
match trace_utils::get_traces_from_request_body(http_common::Body::from_bytes(body))

bottlecap/src/traces/trace_processor.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -347,10 +347,6 @@ impl TraceProcessor for ServerlessTraceProcessor {
347347
} else {
348348
"0"
349349
};
350-
debug!(
351-
"TRACE_PROCESSOR | header_tags.client_computed_stats: {}, compute_stats: {}",
352-
header_tags.client_computed_stats, compute_stats_value
353-
);
354350
let mut payload = trace_utils::collect_pb_trace_chunks(
355351
traces,
356352
&header_tags,

0 commit comments

Comments
 (0)