Skip to content

Commit

Permalink
Remove tracing subscriber (#515)
Browse files Browse the repository at this point in the history
  • Loading branch information
rkuris authored Feb 5, 2024
1 parent 7713f2d commit c563088
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion grpc-testtool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ thiserror = "1.0.47"
tokio = { version = "1.32.0", features = ["sync", "rt-multi-thread"] }
tonic = { version = "0.10.0", features = ["tls"] }
tracing = { version = "0.1.16" }
tracing-subscriber = { version = "0.3", features = ["tracing-log", "fmt", "env-filter"] }
clap = { version = "4.4.11", features = ["derive"] }
tempdir = "0.3.7"
log = "0.4.20"
Expand Down
2 changes: 1 addition & 1 deletion grpc-testtool/src/bin/process-server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ async fn main() -> Result<(), Box<dyn Error>> {
.filter(None, args.log_level)
.init();

tracing_subscriber::fmt::init();
// tracing_subscriber::fmt::init();

// log to the file and to stderr
info!("Starting up: Listening on {}", args.grpc_port);
Expand Down

0 comments on commit c563088

Please sign in to comment.