Adding tracing subscriber to testers
This commit is contained in:
parent
0853c48813
commit
a4090e7886
|
@ -2505,6 +2505,7 @@ dependencies = [
|
||||||
"serde_json",
|
"serde_json",
|
||||||
"solana-rpc-client",
|
"solana-rpc-client",
|
||||||
"solana-sdk",
|
"solana-sdk",
|
||||||
|
"tracing-subscriber",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
@ -2523,6 +2524,7 @@ dependencies = [
|
||||||
"serde",
|
"serde",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
"solana-sdk",
|
"solana-sdk",
|
||||||
|
"tracing-subscriber",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|
|
@ -16,6 +16,7 @@ serde_json = { workspace = true }
|
||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
log = { workspace = true }
|
log = { workspace = true }
|
||||||
bincode = { workspace = true }
|
bincode = { workspace = true }
|
||||||
|
tracing-subscriber = { workspace = true }
|
||||||
|
|
||||||
quic-geyser-client = { workspace = true }
|
quic-geyser-client = { workspace = true }
|
||||||
quic-geyser-common = { workspace = true }
|
quic-geyser-common = { workspace = true }
|
||||||
|
|
|
@ -39,6 +39,7 @@ pub mod cli;
|
||||||
//println!("{}", config_json);
|
//println!("{}", config_json);
|
||||||
|
|
||||||
pub fn main() {
|
pub fn main() {
|
||||||
|
tracing_subscriber::fmt::init();
|
||||||
let args = Args::parse();
|
let args = Args::parse();
|
||||||
println!("Connecting");
|
println!("Connecting");
|
||||||
let (client, reciever) = Client::new(
|
let (client, reciever) = Client::new(
|
||||||
|
|
|
@ -16,6 +16,7 @@ anyhow = { workspace = true }
|
||||||
log = { workspace = true }
|
log = { workspace = true }
|
||||||
bincode = { workspace = true }
|
bincode = { workspace = true }
|
||||||
itertools = {workspace = true}
|
itertools = {workspace = true}
|
||||||
|
tracing-subscriber = { workspace = true }
|
||||||
|
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,7 @@ use solana_sdk::{account::Account, pubkey::Pubkey};
|
||||||
pub mod cli;
|
pub mod cli;
|
||||||
|
|
||||||
pub fn main() {
|
pub fn main() {
|
||||||
|
tracing_subscriber::fmt::init();
|
||||||
let args = Args::parse();
|
let args = Args::parse();
|
||||||
|
|
||||||
let config = ConfigQuicPlugin {
|
let config = ConfigQuicPlugin {
|
||||||
|
|
Loading…
Reference in New Issue