Skip to content

Commit

Permalink
chore: cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench committed Jan 29, 2024
1 parent f77c877 commit fa45346
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion acvm-repo/acvm_js/src/logging.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ pub fn init_log_level(filter: String) -> Result<(), JsLogInitError> {
use std::sync::Once;

let filter: EnvFilter = filter.parse().map_err(|err| {
JsLogInitError::constructor(format!("Could not parse log filter while initializing logger: {err}").into())
JsLogInitError::constructor(
format!("Could not parse log filter while initializing logger: {err}").into()
)
})?;

static SET_HOOK: Once = Once::new();
Expand Down

0 comments on commit fa45346

Please sign in to comment.