From 4903e1e43d3ea212a3bf12eebf5ddd186b2afe94 Mon Sep 17 00:00:00 2001 From: Matthew Jackson Date: Tue, 12 May 2026 08:49:33 -0700 Subject: [PATCH] v0.18.21: fix borrow checker error in debug logging --- src/io/pipeline.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/io/pipeline.rs b/src/io/pipeline.rs index 1beade6..f808237 100644 --- a/src/io/pipeline.rs +++ b/src/io/pipeline.rs @@ -178,13 +178,13 @@ impl Pipeline { } } Err(e) => { - first_err = Some(e); if debug_enabled() { tracing::debug!( "Pipeline: apply error, stopping, err={:?}", e ); } + first_err = Some(e); } }