Adding tracing subscriber to testers

This commit is contained in:
godmodegalactus 2024-05-22 15:44:10 +02:00
parent 0853c48813
commit a4090e7886
No known key found for this signature in database
GPG Key ID: 22DA4A30887FDA3C
5 changed files with 6 additions and 0 deletions

2
Cargo.lock generated
View File

@ -2505,6 +2505,7 @@ dependencies = [
"serde_json",
"solana-rpc-client",
"solana-sdk",
"tracing-subscriber",
]
[[package]]
@ -2523,6 +2524,7 @@ dependencies = [
"serde",
"serde_json",
"solana-sdk",
"tracing-subscriber",
]
[[package]]

View File

@ -16,6 +16,7 @@ serde_json = { workspace = true }
anyhow = { workspace = true }
log = { workspace = true }
bincode = { workspace = true }
tracing-subscriber = { workspace = true }
quic-geyser-client = { workspace = true }
quic-geyser-common = { workspace = true }

View File

@ -39,6 +39,7 @@ pub mod cli;
//println!("{}", config_json);
pub fn main() {
tracing_subscriber::fmt::init();
let args = Args::parse();
println!("Connecting");
let (client, reciever) = Client::new(

View File

@ -16,6 +16,7 @@ anyhow = { workspace = true }
log = { workspace = true }
bincode = { workspace = true }
itertools = {workspace = true}
tracing-subscriber = { workspace = true }
rand = "0.8.5"

View File

@ -18,6 +18,7 @@ use solana_sdk::{account::Account, pubkey::Pubkey};
pub mod cli;
pub fn main() {
tracing_subscriber::fmt::init();
let args = Args::parse();
let config = ConfigQuicPlugin {