File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -4,5 +4,6 @@ AWS_ACCESS_KEY_ID=test
44AWS_BUCKET_NAME = aligned.storage
55UPLOAD_ENDPOINT = http://localhost:4566
66DOWNLOAD_ENDPOINT = http://localhost:4566/aligned.storage
7- RUST_LOG = info
7+ # Override default logs filter
8+ # RUST_LOG=info
89RUST_BACKTRACE = 1
Original file line number Diff line number Diff line change @@ -39,7 +39,12 @@ async fn main() -> Result<(), BatcherError> {
3939 None => dotenvy:: dotenv ( ) . ok ( ) ,
4040 } ;
4141
42- env_logger:: Builder :: from_env ( Env :: default ( ) . default_filter_or ( "info" ) ) . init ( ) ;
42+ env_logger:: Builder :: from_env ( Env :: default ( ) . filter_or (
43+ "RUST_LOG" ,
44+ "info,aligned_batcher=debug,ethers_providers=off" ,
45+ ) )
46+ . init ( ) ;
47+
4348 let batcher = Batcher :: new ( cli. config ) . await ;
4449 let batcher = Arc :: new ( batcher) ;
4550
You can’t perform that action at this time.
0 commit comments