remove debug logs
This commit is contained in:
parent
927ec60183
commit
fffbda468d
@ -6,6 +6,10 @@
|
||||
url = "ws://127.0.0.1:8546"
|
||||
soft_limit = 200_000
|
||||
|
||||
[balanced_rpc_tiers.0.ankr]
|
||||
url = "https://rpc.ankr.com/eth"
|
||||
soft_limit = 3_000
|
||||
|
||||
[private_rpcs]
|
||||
|
||||
[private_rpcs.eden]
|
||||
|
@ -6,7 +6,7 @@ mod jsonrpc;
|
||||
|
||||
use std::fs;
|
||||
use std::sync::Arc;
|
||||
use tracing::{info, trace, warn};
|
||||
use tracing::info;
|
||||
use warp::Filter;
|
||||
use warp::Reply;
|
||||
|
||||
@ -18,10 +18,6 @@ async fn main() -> anyhow::Result<()> {
|
||||
// install global collector configured based on RUST_LOG env var.
|
||||
tracing_subscriber::fmt::init();
|
||||
|
||||
info!("test info");
|
||||
warn!("test warn");
|
||||
trace!("test trace");
|
||||
|
||||
let cli_config: CliConfig = argh::from_env();
|
||||
|
||||
info!("Loading rpc config @ {}", cli_config.rpc_config_path);
|
||||
|
Loading…
Reference in New Issue
Block a user