diff options
author | Alex Auvolat <alex@adnab.me> | 2023-08-27 16:13:29 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-08-27 16:13:29 +0200 |
commit | 30ce3a97c976048daa659409ec36798ddc07b194 (patch) | |
tree | 88219a9bc479fccc1e8f8cda73932244ecb6f0f4 /src/http.rs | |
parent | a3602eac8294fb847912fc084e8943587da7ef56 (diff) | |
download | tricot-30ce3a97c976048daa659409ec36798ddc07b194.tar.gz tricot-30ce3a97c976048daa659409ec36798ddc07b194.zip |
replace log,pretty_env_logger by tracing,tracing_subscriber and add timedocker-50
Diffstat (limited to 'src/http.rs')
-rw-r--r-- | src/http.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http.rs b/src/http.rs index 973e77f..9d85608 100644 --- a/src/http.rs +++ b/src/http.rs @@ -2,7 +2,7 @@ use std::net::SocketAddr; use std::sync::Arc; use anyhow::Result; -use log::*; +use tracing::*; use futures::future::Future; use http::uri::Authority; |