diff --git a/src/cli/arg/instrumentation.rs b/src/cli/arg/instrumentation.rs index b7b3413..9a177b8 100644 --- a/src/cli/arg/instrumentation.rs +++ b/src/cli/arg/instrumentation.rs @@ -42,7 +42,7 @@ pub struct Instrumentation { pub log_directives: Vec, } -impl<'a> Instrumentation { +impl Instrumentation { pub fn log_level(&self) -> String { match self.verbose { 0 => "info", @@ -52,7 +52,7 @@ impl<'a> Instrumentation { .to_string() } - pub fn setup<'b: 'a>(&'b self) -> eyre::Result<()> { + pub fn setup(&self) -> eyre::Result<()> { let filter_layer = self.filter_layer()?; let registry = tracing_subscriber::registry()