chore: move tracing to workspace deps and remove router_env as a dependency of redis_interface (#4717)

This commit is contained in:
Nishant Joshi
2024-05-21 19:48:34 +05:30
committed by GitHub
parent a917776bb8
commit fea2ea6d2c
6 changed files with 11 additions and 9 deletions

View File

@ -23,7 +23,7 @@ use fred::{
},
};
use futures::StreamExt;
use router_env::{instrument, logger, tracing};
use tracing::instrument;
use crate::{
errors,
@ -379,7 +379,7 @@ impl super::RedisConnectionPool {
Some(futures::stream::iter(v))
}
Err(err) => {
logger::error!(?err);
tracing::error!(?err);
None
}
}