chore: lower log noisiness by removing `ret` from `PendingOperation::… (#4372)

…perpare`

### Description

<!--
What's included in this PR?
-->

### Drive-by changes

<!--
Are there any minor or drive-by changes also included?
-->

### Related issues

<!--
- Fixes #[issue number here]
-->

### Backward compatibility

<!--
Are these changes backward compatible? Are there any infrastructure
implications, e.g. changes that would prohibit deploying older commits
using this infra tooling?

Yes/No
-->

### Testing

<!--
What kind of testing have these changes undergone?

None/Manual/Unit Tests
-->
pull/4375/head
Daniel Savu 3 months ago committed by GitHub
parent 240d24d06d
commit feb1d390c4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      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");

Loading…
Cancel
Save