diff --git a/lib/src/player.rs b/lib/src/player.rs index 0b4ae73..7bc241d 100644 --- a/lib/src/player.rs +++ b/lib/src/player.rs @@ -341,7 +341,10 @@ where // ^^^ unwrapping in these instances is fine due to the query context that we are in, if an error occurs, // we want to panic regardless else { - tracing::info!("🚫 skipping set from tourney \"{}\"", s.event.tournament.as_ref().unwrap().name); + tracing::info!( + "🚫 skipping set from tourney \"{}\"", + s.event.tournament.as_ref().unwrap().name + ); continue; } }