@@ -3,7 +3,7 @@ use std::path::PathBuf;
33use alloy_primitives:: Address ;
44use env_logger:: Env ;
55use futures_util:: { future, SinkExt , StreamExt , TryStreamExt } ;
6- use log:: { info, warn } ;
6+ use log:: { info} ;
77use tokio_tungstenite:: connect_async;
88
99use batcher:: types:: { parse_proving_system, VerificationData } ;
@@ -82,21 +82,21 @@ async fn main() {
8282 if let Ok ( data) = std:: fs:: read ( args. pub_input_file_name ) {
8383 pub_input = Some ( data) ;
8484 } else {
85- warn ! ( "No public input file provided, continuing without public input..." ) ;
85+ info ! ( "No public input file provided, continuing without public input..." ) ;
8686 }
8787
8888 let mut verification_key: Option < Vec < u8 > > = None ;
8989 if let Ok ( data) = std:: fs:: read ( args. verification_key_file_name ) {
9090 verification_key = Some ( data) ;
9191 } else {
92- warn ! ( "No verification key file provided, continuing without verification key..." ) ;
92+ info ! ( "No verification key file provided, continuing without verification key..." ) ;
9393 }
9494
9595 let mut vm_program_code: Option < Vec < u8 > > = None ;
9696 if let Ok ( data) = std:: fs:: read ( args. vm_program_code_file_name ) {
9797 vm_program_code = Some ( data) ;
9898 } else {
99- warn ! ( "No VM program code file provided, continuing without VM program code..." ) ;
99+ info ! ( "No VM program code file provided, continuing without VM program code..." ) ;
100100 }
101101
102102 let proof_generator_addr: Address = Address :: parse_checksummed ( & args. proof_generator_addr , None ) . unwrap ( ) ;
0 commit comments