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/https.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/https.rs')
-rw-r--r-- | src/https.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/https.rs b/src/https.rs index 2353c2d..f31caef 100644 --- a/src/https.rs +++ b/src/https.rs @@ -4,7 +4,7 @@ use std::sync::{atomic::Ordering, Arc}; use std::time::{Duration, Instant}; use anyhow::Result; -use log::*; +use tracing::*; use accept_encoding_fork::Encoding; use async_compression::tokio::bufread::*; |