Skip to content

Commit

Permalink
Remove tracing_log dep (#848)
Browse files Browse the repository at this point in the history
Co-authored-by: Conor <conor.brosnan@instaclustr.com>
  • Loading branch information
rukai and conorbros committed Oct 11, 2022
1 parent 7b6509d commit e99c638
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 32 deletions.
30 changes: 0 additions & 30 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion shotover-proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ metrics = "0.20.0"
metrics-exporter-prometheus = "0.11.0"
tracing = { version = "0.1.15", features = ["release_max_level_info"] }
tracing-subscriber = { version = "0.3.1", features = ["env-filter"] }
tracing-log = { version = "0.1.1", features = ["env_logger"] }
tracing-appender = "0.2.0"
hyper = { version = "0.14.14", features = ["server"] }
halfbrown = "0.1.11"
Expand Down
2 changes: 1 addition & 1 deletion shotover-proxy/src/transforms/redis/cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use metrics::{register_counter, Counter};
use serde::Deserialize;
use std::collections::{BTreeMap, HashMap};
use std::net::SocketAddr;
use tracing_log::log::{error, warn};
use tracing::{error, warn};

/// Data is stored in Redis as a Hash (hset/hget) and constructed from the cassandra SELECT statement
/// * The name of the hash is constructed from: the FROM component and partition + range keys as per the TableCacheSchema configuration
Expand Down

0 comments on commit e99c638

Please sign in to comment.