From feb1d390c40c9da873b45f5b3fc785da3c27c947 Mon Sep 17 00:00:00 2001 From: Daniel Savu <23065004+daniel-savu@users.noreply.github.com> Date: Thu, 22 Aug 2024 16:49:46 +0100 Subject: [PATCH] =?UTF-8?q?chore:=20lower=20log=20noisiness=20by=20removin?= =?UTF-8?q?g=20`ret`=20from=20`PendingOperation::=E2=80=A6=20(#4372)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit …perpare` ### Description ### Drive-by changes ### Related issues ### Backward compatibility ### Testing --- rust/agents/relayer/src/msg/pending_message.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/agents/relayer/src/msg/pending_message.rs b/rust/agents/relayer/src/msg/pending_message.rs index 8fbe29b25..02ca48e13 100644 --- a/rust/agents/relayer/src/msg/pending_message.rs +++ b/rust/agents/relayer/src/msg/pending_message.rs @@ -170,7 +170,7 @@ impl PendingOperation for PendingMessage { self.app_context.clone() } - #[instrument(skip(self), ret, fields(id=?self.id()), level = "debug")] + #[instrument(skip(self), fields(id=?self.id()), level = "debug")] async fn prepare(&mut self) -> PendingOperationResult { if !self.is_ready() { trace!("Message is not ready to be submitted yet");