Skip to content

Commit

Permalink
Downgrade a log line from info to debug (#540)
Browse files Browse the repository at this point in the history
This log line is currently occuring too often. Later changes will
investigate the categorization of these "normal" errors, and more
holistically evaluate our log levels.
  • Loading branch information
kulakowski committed Nov 8, 2023
1 parent cea4eb0 commit 5ec7eeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/core/src/host/wasmer/wasm_instance_env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ impl WasmInstanceEnv {
Err(match err {
WasmError::Db(err) => match err_to_errno(&err) {
Some(errno) => {
log::info!("abi call to {func} returned a normal error: {err:#}");
log::debug!("abi call to {func} returned a normal error: {err:#}");
return Ok(errno);
}
None => RuntimeError::user(Box::new(AbiRuntimeError { func, err })),
Expand Down

0 comments on commit 5ec7eeb

Please sign in to comment.