From 10a24629c979c0a9820c3204356f93cec8d15973 Mon Sep 17 00:00:00 2001 From: vms Date: Mon, 9 Nov 2020 03:26:23 +0300 Subject: [PATCH] improve log --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/interpreter/instructions/call_core.rs | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cddac33..97921f4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -161,7 +161,7 @@ checksum = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed" [[package]] name = "wasmer-interface-types-fl" -version = "0.17.17" +version = "0.17.18" dependencies = [ "log", "nom", diff --git a/Cargo.toml b/Cargo.toml index 2348578..9d758a0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-interface-types-fl" -version = "0.17.17" +version = "0.17.18" description = "WebAssembly Interface Types library for Wasmer" license = "MIT" authors = ["The Wasmer Engineering Team "] diff --git a/src/interpreter/instructions/call_core.rs b/src/interpreter/instructions/call_core.rs index 340974f..73e7c59 100644 --- a/src/interpreter/instructions/call_core.rs +++ b/src/interpreter/instructions/call_core.rs @@ -31,7 +31,7 @@ executable_instruction!( super::check_function_signature(&**instance, local_or_import, &inputs, instruction.clone())?; - log::trace!("call-core: calling {} with arguments: {:?}", local_or_import.name(), inputs); + log::info!("call-core: calling {} with arguments: {:?}", local_or_import.name(), inputs); let outputs = local_or_import.call(&inputs).map_err(|_| { InstructionError::new( @@ -42,7 +42,7 @@ executable_instruction!( ) })?; - log::trace!("call-core: call to {} succeeded with result {:?}", function_index, outputs); + log::info!("call-core: call to {} succeeded with result {:?}", local_or_import.name(), outputs); for output in outputs.into_iter() { runtime.stack.push(output)