Adding tracing subscriber to testers
This commit is contained in:
parent
0853c48813
commit
a4090e7886
|
@ -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]]
|
||||
|
|
|
@ -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 }
|
||||
|
|
|
@ -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(
|
||||
|
|
|
@ -16,6 +16,7 @@ anyhow = { workspace = true }
|
|||
log = { workspace = true }
|
||||
bincode = { workspace = true }
|
||||
itertools = {workspace = true}
|
||||
tracing-subscriber = { workspace = true }
|
||||
|
||||
rand = "0.8.5"
|
||||
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue