Skip to content

Commit f94364d

Browse files
fix: change warn to info in batcher-client (#281)
Co-authored-by: Tatu <65305492+srosati@users.noreply.github.com>
1 parent 0fac425 commit f94364d

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

batcher/client/src/main.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use std::path::PathBuf;
33
use alloy_primitives::Address;
44
use env_logger::Env;
55
use futures_util::{future, SinkExt, StreamExt, TryStreamExt};
6-
use log::{info, warn};
6+
use log::{info};
77
use tokio_tungstenite::connect_async;
88

99
use 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

Comments
 (0)