mirror of
https://github.com/fluencelabs/interface-types
synced 2024-12-04 15:20:20 +00:00
use log::debug in call-core
This commit is contained in:
parent
94dabb09ed
commit
44d559cca1
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -161,7 +161,7 @@ checksum = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed"
|
||||
|
||||
[[package]]
|
||||
name = "wasmer-interface-types-fl"
|
||||
version = "0.17.18"
|
||||
version = "0.17.19"
|
||||
dependencies = [
|
||||
"log",
|
||||
"nom",
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "wasmer-interface-types-fl"
|
||||
version = "0.17.18"
|
||||
version = "0.17.19"
|
||||
description = "WebAssembly Interface Types library for Wasmer"
|
||||
license = "MIT"
|
||||
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
||||
|
@ -31,7 +31,7 @@ executable_instruction!(
|
||||
|
||||
super::check_function_signature(&**instance, local_or_import, &inputs, instruction.clone())?;
|
||||
|
||||
log::info!("call-core: calling {} with arguments: {:?}", local_or_import.name(), inputs);
|
||||
log::debug!("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::info!("call-core: call to {} succeeded with result {:?}", local_or_import.name(), outputs);
|
||||
log::debug!("call-core: call to {} succeeded with result {:?}", local_or_import.name(), outputs);
|
||||
|
||||
for output in outputs.into_iter() {
|
||||
runtime.stack.push(output)
|
||||
|
Loading…
Reference in New Issue
Block a user