We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f34d1c commit 1dbe9ccCopy full SHA for 1dbe9cc
src/main.rs
@@ -34,7 +34,9 @@ use crate::types::ChainPusher;
34
35
#[tokio::main]
36
async fn main() {
37
- tracing_subscriber::fmt().init();
+ tracing_subscriber::fmt()
38
+ .with_env_filter(tracing_subscriber::EnvFilter::from_default_env())
39
+ .init();
40
dotenvy::dotenv().ok();
41
let args = Args::parse();
42
let private_key = get_private_key(args.private_key);
0 commit comments