Skip to content

Commit c3b2340

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

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ 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,
16+
TraceExporter as GenericTraceExporter, TraceExporterInputFormat,
1717
TraceExporterOutputFormat,
1818
};
1919

@@ -22,8 +22,6 @@ type TraceExporter = GenericTraceExporter<NativeCapabilities>;
2222
use std::{ptr::NonNull, time::Duration};
2323
#[cfg(feature = "telemetry")]
2424
use tracing::debug;
25-
#[cfg(all(feature = "catch_panic", not(panic = "abort")))]
26-
use tracing::error;
2725

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

0 commit comments

Comments
 (0)