Skip to content

Commit 0e0ad70

Browse files
committed
chore: fix clippy warnings
1 parent 5b8d114 commit 0e0ad70

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

libdd-data-pipeline-ffi/src/trace_exporter.rs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,16 @@ use libdd_common_ffi::{
1111
};
1212

1313
#[cfg(feature = "telemetry")]
14-
use libdd_data_pipeline::trace_exporter::TelemetryConfig;
14+
use libdd_data_pipeline::telemetry::TelemetryConfig;
1515
use libdd_data_pipeline::trace_exporter::{
16-
TelemetryConfig, TraceExporter as GenericTraceExporter, TraceExporterInputFormat,
17-
TraceExporterOutputFormat,
16+
TraceExporter as GenericTraceExporter, TraceExporterInputFormat, TraceExporterOutputFormat,
1817
};
1918

2019
type TraceExporter = GenericTraceExporter<NativeCapabilities>;
2120

2221
use std::{ptr::NonNull, time::Duration};
2322
#[cfg(feature = "telemetry")]
2423
use tracing::debug;
25-
#[cfg(all(feature = "catch_panic", not(panic = "abort")))]
26-
use tracing::error;
2724

2825
#[inline]
2926
fn sanitize_string(str: CharSlice) -> Result<String, Box<ExporterError>> {

0 commit comments

Comments
 (0)