Skip to content

Commit

Permalink
increase log severity
Browse files Browse the repository at this point in the history
  • Loading branch information
hohav committed Aug 27, 2022
1 parent caa0b5d commit ee21d89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use std::{
};

use clap::{Arg, ArgAction, Command};
use log::{error, info, debug, LevelFilter};
use log::{error, warn, info, debug, LevelFilter};
use peekread::{BufPeekReader, PeekRead};
use serde::{Deserialize, Serialize};
use xxhash_rust::xxh3::Xxh3;
Expand Down Expand Up @@ -294,7 +294,7 @@ fn detect_format<R: Read>(buf: &mut BufPeekReader<R>, opts: &Opts) -> Result<For
fn read_slippi<R: Read>(buf: R, opts: &Opts) -> Result<(Game, Option<String>), Box<dyn Error>> {
let no_verify_reason = no_verify_reason(opts);
if let Some(ref reason) = no_verify_reason {
info!("Skipping round-trip verification ({})", reason);
warn!("Skipping round-trip verification ({})", reason);
};
let mut buf = HashReader::new(buf, no_verify_reason.is_none());

Expand Down

0 comments on commit ee21d89

Please sign in to comment.