Skip to content

Commit

Permalink
Fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
aqrln committed Nov 25, 2024
1 parent 47baad6 commit e74fb4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/telemetry/src/capturing/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ pub fn install_capturing_layer(
// decorate the given subscriber (more layers were added before this one) with the telemetry layer
let subscriber = subscriber
.with(telemetry_layer)
.with(ng::layer(ng::collector::Exporter::new()));
.with(ng::layer(ng::exporter::Exporter::new()));
// and finally set the subscriber as the global, default subscriber
subscriber::set_global_default(subscriber).unwrap();
}
Expand Down

0 comments on commit e74fb4c

Please sign in to comment.