Switch from tracing to log crate
This commit is contained in:
parent
1faf42bd82
commit
f12da915a9
16 changed files with 149 additions and 202 deletions
|
|
@ -5,8 +5,8 @@ use std::{
|
|||
sync::{Arc, Mutex},
|
||||
};
|
||||
|
||||
use log::error;
|
||||
use tokio::sync::Notify;
|
||||
use tracing::error;
|
||||
|
||||
use crate::{
|
||||
config::WorkerServerConfig,
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
use std::sync::{Arc, Mutex};
|
||||
|
||||
use log::{debug, warn};
|
||||
use reqwest::Client;
|
||||
use tempfile::TempDir;
|
||||
use tokio::sync::Mutex as AsyncMutex;
|
||||
use tracing::{debug, warn};
|
||||
|
||||
use crate::{
|
||||
config::{WorkerConfig, WorkerServerConfig},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue