Skip to content

Commit

Permalink
fix: don't disable logs on the server (#320)
Browse files Browse the repository at this point in the history
  • Loading branch information
leruaa committed Jan 14, 2025
1 parent 3158d35 commit a90dd34
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions proposer/succinct/bin/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ pub const AGG_ELF: &[u8] = include_bytes!("../../../elf/aggregation-elf");

#[tokio::main]
async fn main() -> Result<()> {
// Set up the SP1 SDK logger.
utils::setup_logger();

// Enable logging.
env::set_var("RUST_LOG", "info");

// Set up the SP1 SDK logger.
utils::setup_logger();

dotenv::dotenv().ok();

let prover = ProverClient::builder().cpu().build();
Expand Down

0 comments on commit a90dd34

Please sign in to comment.