From cfb8ddced78d331b0bcb60e105498084e9d94e93 Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Thu, 23 Nov 2023 12:46:41 -0800 Subject: [PATCH] fix nonsensical import error when building docs --- source/calliope/src/req_rsp.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/calliope/src/req_rsp.rs b/source/calliope/src/req_rsp.rs index 0a82c53..4920512 100644 --- a/source/calliope/src/req_rsp.rs +++ b/source/calliope/src/req_rsp.rs @@ -6,7 +6,7 @@ use maitake_sync::{ WaitCell, }; use serde::{de::DeserializeOwned, Deserialize, Serialize}; -use tracing::{instrument, Level}; +use tracing::Level; use tricky_pipe::mpsc::error::{RecvError, SendError, TrySendError}; #[cfg(test)] @@ -190,7 +190,7 @@ where /// Run the client's dispatcher in the background until cancelled or the /// connection is reset. - #[instrument( + #[tracing::instrument( level = Level::DEBUG, name = "Client::dispatcher", skip(self),