We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79b3bc8 commit ddc4340Copy full SHA for ddc4340
1 file changed
bottlecap/src/otlp/processor.rs
@@ -47,11 +47,9 @@ impl Processor {
47
) -> Result<Vec<Vec<DatadogSpan>>, Box<dyn Error>> {
48
let request = match encoding {
49
OtlpEncoding::Json => {
50
- tracing::debug!("Decoding OTLP traces as JSON");
51
serde_json::from_slice::<ExportTraceServiceRequest>(body)?
52
}
53
OtlpEncoding::Protobuf => {
54
- tracing::debug!("Decoding OTLP traces as Protobuf");
55
ExportTraceServiceRequest::decode(body)?
56
57
};
0 commit comments