refactor(lib): Import tracing macros per-module

Instead of one #[macro_use] at the crate root.
This commit is contained in:
Jonas Platte
2021-08-29 14:31:20 +02:00
committed by Sean McArthur
parent 165ada34a3
commit a81c44f2c8
23 changed files with 35 additions and 16 deletions

View File

@@ -9,6 +9,7 @@ use h2::{Reason, RecvStream};
use http::{Method, Request};
use pin_project_lite::pin_project;
use tokio::io::{AsyncRead, AsyncWrite};
use tracing::{debug, trace, warn};
use super::{ping, PipeToSendStream, SendBuf};
use crate::body::HttpBody;